Package nz.ac.massey.cs.deploymentpuzzlersurvey

Examples of nz.ac.massey.cs.deploymentpuzzlersurvey.Responses


* @author jens dietrich
*/
public class PrintCorrectAnswerRatioDependingOnYearOfExperience {

  public static void main(String[] args) throws Exception {
    Responses responses = Responses.build().didNotAnswerBoth();
    Map<Object,Integer> correctAnswersRECP = new LinkedHashMap<>();
    Map<Object,Integer> allAnswersRECP = new LinkedHashMap<>();
    Map<Object,Integer> correctAnswersUPGR = new LinkedHashMap<>();
    Map<Object,Integer> allAnswersUPGR = new LinkedHashMap<>();
    Map<Object,Integer> correctAnswersINL = new LinkedHashMap<>();
View Full Code Here


      @Override
      public boolean accept(Response r) {
        return r.isHasCompletedBothSurveys();
      }   
    };
    Responses responses = Responses.build().filter(filter);
    int c = 0;
    for (Response response:responses) {
      c=c+1;
    }
    System.out.println(c);
View Full Code Here

TOP

Related Classes of nz.ac.massey.cs.deploymentpuzzlersurvey.Responses

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.