Package user

Examples of user.UserScoreJson


      //// DUMMY LOGIC - remove these functions when completing this API ////
      //// Do not use this logic, it is incorrect! ////
   
     
      UserScoreJson[] tempScoreList = ScoreFactory.getUserScoreJson(2);
      tempScoreList[0] = new UserScoreJson();
      tempScoreList[0].setGroupId(1);
      tempScoreList[0].setGroupTitle("Algebra");
      tempScoreList[0].setNumOfQuestions(40);
      tempScoreList[0].setNumOfRightAnswers(35);
      tempScoreList[0].setDateTaken(new Date());
      tempScoreList[1] = new UserScoreJson();
      tempScoreList[1].setGroupId(2);
      tempScoreList[1].setGroupTitle("English");
      tempScoreList[1].setNumOfQuestions(25);
      tempScoreList[1].setNumOfRightAnswers(25);
      tempScoreList[1].setDateTaken(new Date());
View Full Code Here

TOP

Related Classes of user.UserScoreJson

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.