Package org.java.demo.model

Examples of org.java.demo.model.SubjectResult


  private SubjectResult aSubjectResult;

  @SetupRender
  public void setupRender() {
    studyResult = new StudyResult();
    subjectResult = new SubjectResult();
  }
View Full Code Here


  // Adding score
  @OnEvent(value = EventConstants.PREPARE_FOR_SUBMIT, component = ADD_SCORE_FORM)
  public void onPrepareForm2() {
    if (subjectResult == null) {
      subjectResult = new SubjectResult();
    }
  }
View Full Code Here

  }

  @OnEvent(value = EventConstants.SUCCESS, component = ADD_SCORE_FORM)
  public Object onSuccess2() throws Exception {
    studyResult.addSubjectResult(subjectResult);
    subjectResult = new SubjectResult();
    MultiZoneUpdate multiZoneUpdate = new MultiZoneUpdate("addScoreZone", addScoreBlock);
    return multiZoneUpdate.add("scoreListZone", scoreListBlock);
  }
View Full Code Here

TOP

Related Classes of org.java.demo.model.SubjectResult

Copyright © 2018 www.massapicom. 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.