Package org.cipres.treebase.domain.study

Examples of org.cipres.treebase.domain.study.Study.addAnalysis()


    Long study_id = ControllerUtil.getStudyId(request);
    Study study = mStudyService.findByID(study_id);
    String redirectView = request.getParameter("redirect");

    if (request.getParameter(ACTION_SUBMIT) != null) {
      study.addAnalysis(analysis);
      mStudyService.update(study);
      // TODO:
      // should return the newly created analysis object
      // ControllerUtil.saveAnalysis(request, analysis);
    } else if (request.getParameter(ACTION_UPDATE) != null) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.