Package org.webcamp.questionary.services.impl

Examples of org.webcamp.questionary.services.impl.PercentileScore.evaluate()


    progress.getAnswers().add(userAnswers);

    if (progress.getCurrentQuestionIndex() == progress.getQuestionary().getQuestions().size() - 1) {

      PercentileScore ps = new PercentileScore();
      Score score = ps.evaluate(progress.getQuestionary(), progress.getAnswers());

      User user = (User) session.getAttribute("user");
      QuestionaryResult result = new QuestionaryResult();
      result.setUserId(user.getId());
      result.setDate(new Date());
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.