esoe
3 years ago
16 changed files with 155 additions and 5 deletions
@ -1,3 +1,33 @@ |
|||||||
package ru.egspt; |
package ru.egspt; |
||||||
|
|
||||||
|
import java.util.ArrayList; |
||||||
|
|
||||||
public class Data extends UserListModel { |
public class Data extends UserListModel { |
||||||
|
ArrayList<Quiz> quizes = new ArrayList<>(); |
||||||
|
ArrayList<Result> results = new ArrayList<>(); |
||||||
|
|
||||||
|
/** |
||||||
|
* @param quizes the quizes to set |
||||||
|
*/ |
||||||
|
public void setQuizes(ArrayList<Quiz> quizes) { |
||||||
|
this.quizes = quizes; |
||||||
|
} |
||||||
|
/** |
||||||
|
* @return the quizes |
||||||
|
*/ |
||||||
|
public ArrayList<Quiz> getQuizes() { |
||||||
|
return quizes; |
||||||
|
} |
||||||
|
/** |
||||||
|
* @param results the results to set |
||||||
|
*/ |
||||||
|
public void setResults(ArrayList<Result> results) { |
||||||
|
this.results = results; |
||||||
|
} |
||||||
|
/** |
||||||
|
* @return the results |
||||||
|
*/ |
||||||
|
public ArrayList<Result> getResults() { |
||||||
|
return results; |
||||||
|
} |
||||||
} |
} |
||||||
|
@ -0,0 +1,36 @@ |
|||||||
|
package ru.egspt; |
||||||
|
|
||||||
|
public class Quiz { |
||||||
|
private int id; |
||||||
|
private String name; |
||||||
|
public Quiz(){} |
||||||
|
public Quiz(int id, String name){ |
||||||
|
this.setId(id); |
||||||
|
this.setName(name); |
||||||
|
} |
||||||
|
/** |
||||||
|
* @return the id |
||||||
|
*/ |
||||||
|
public int getId() { |
||||||
|
return id; |
||||||
|
} |
||||||
|
/** |
||||||
|
* @param id the id to set |
||||||
|
*/ |
||||||
|
public void setId(int id) { |
||||||
|
this.id = id; |
||||||
|
} |
||||||
|
/** |
||||||
|
* @return the name |
||||||
|
*/ |
||||||
|
public String getName() { |
||||||
|
return name; |
||||||
|
} |
||||||
|
/** |
||||||
|
* @param name the name to set |
||||||
|
*/ |
||||||
|
public void setName(String name) { |
||||||
|
this.name = name; |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,5 @@ |
|||||||
|
package ru.egspt; |
||||||
|
|
||||||
|
public class QuizesListModel { |
||||||
|
|
||||||
|
} |
@ -0,0 +1,70 @@ |
|||||||
|
package ru.egspt; |
||||||
|
|
||||||
|
public class Result { |
||||||
|
int id; |
||||||
|
int quizid; |
||||||
|
int userid; |
||||||
|
double grade; |
||||||
|
Long time; |
||||||
|
|
||||||
|
/** |
||||||
|
* @param id the id to set |
||||||
|
*/ |
||||||
|
public void setId(int id) { |
||||||
|
this.id = id; |
||||||
|
} |
||||||
|
/** |
||||||
|
* @return the id |
||||||
|
*/ |
||||||
|
public int getId() { |
||||||
|
return id; |
||||||
|
} |
||||||
|
/** |
||||||
|
* @param quizid the quizid to set |
||||||
|
*/ |
||||||
|
public void setQuizid(int quizid) { |
||||||
|
this.quizid = quizid; |
||||||
|
} |
||||||
|
/** |
||||||
|
* @return the quizid |
||||||
|
*/ |
||||||
|
public int getQuizid() { |
||||||
|
return quizid; |
||||||
|
} |
||||||
|
/** |
||||||
|
* @param userid the userid to set |
||||||
|
*/ |
||||||
|
public void setUserid(int userid) { |
||||||
|
this.userid = userid; |
||||||
|
} |
||||||
|
/** |
||||||
|
* @return the userid |
||||||
|
*/ |
||||||
|
public int getUserid() { |
||||||
|
return userid; |
||||||
|
} |
||||||
|
/** |
||||||
|
* @param grade the grade to set |
||||||
|
*/ |
||||||
|
public void setGrade(double grade) { |
||||||
|
this.grade = grade; |
||||||
|
} |
||||||
|
/** |
||||||
|
* @return the grade |
||||||
|
*/ |
||||||
|
public double getGrade() { |
||||||
|
return grade; |
||||||
|
} |
||||||
|
/** |
||||||
|
* @param time the time to set |
||||||
|
*/ |
||||||
|
public void setTime(Long time) { |
||||||
|
this.time = time; |
||||||
|
} |
||||||
|
/** |
||||||
|
* @return the time |
||||||
|
*/ |
||||||
|
public Long getTime() { |
||||||
|
return time; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,5 @@ |
|||||||
|
package ru.egspt; |
||||||
|
|
||||||
|
public class ResultsListModel { |
||||||
|
|
||||||
|
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in new issue