|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Question | |
---|---|
sk.stuba.fiit.foo07.genex.beans | This package contains beans (simple data entities) representing data from database Every class has private data with getters/setters |
sk.stuba.fiit.foo07.genex.dao | DAO stands for Data Access Object, and as the name suggests this package contains interfaces and classes for accessing database layer Almost every class from package beans has DAO here. |
sk.stuba.fiit.foo07.genex.export | Export package contains classes used for exporting database into other formats (Latex, Moodle XML, possibly others in future) |
sk.stuba.fiit.foo07.genex.gui | GUI package contains classes representing Graphical User Interface |
Uses of Question in sk.stuba.fiit.foo07.genex.beans |
---|
Methods in sk.stuba.fiit.foo07.genex.beans with parameters of type Question | |
---|---|
int |
Question.compareTo(Question arg0)
|
Uses of Question in sk.stuba.fiit.foo07.genex.dao |
---|
Fields in sk.stuba.fiit.foo07.genex.dao declared as Question | |
---|---|
protected Question |
QuestionDaoDerby.q
|
Fields in sk.stuba.fiit.foo07.genex.dao with type parameters of type Question | |
---|---|
protected java.util.ArrayList<Question> |
QuestionDaoDerby.q_list
|
Methods in sk.stuba.fiit.foo07.genex.dao that return Question | |
---|---|
Question |
QuestionDaoDerby.getQuestionByID(java.lang.Integer questionID)
|
Question |
QuestionDao.getQuestionByID(java.lang.Integer questionID)
|
Methods in sk.stuba.fiit.foo07.genex.dao that return types with arguments of type Question | |
---|---|
java.util.ArrayList<Question> |
QuestionDaoDerby.getQuestionsByCategoryID(java.lang.Integer categoryID)
|
java.util.ArrayList<Question> |
QuestionDao.getQuestionsByCategoryID(java.lang.Integer categoryID)
|
java.util.ArrayList<Question> |
QuestionDaoDerby.getQuestionsByIDs(java.util.ArrayList<java.lang.Integer> questionIDs)
|
java.util.ArrayList<Question> |
QuestionDao.getQuestionsByIDs(java.util.ArrayList<java.lang.Integer> questionIDs)
|
java.util.ArrayList<Question> |
QuestionDaoDerby.getQuestionsByTestID(java.lang.Integer testID)
|
java.util.ArrayList<Question> |
QuestionDao.getQuestionsByTestID(java.lang.Integer testID)
|
Methods in sk.stuba.fiit.foo07.genex.dao with parameters of type Question | |
---|---|
void |
QuestionDaoDerby.addQuestion(java.lang.Integer categoryID,
Question toAdd)
|
void |
QuestionDao.addQuestion(java.lang.Integer categoryID,
Question toAdd)
|
void |
QuestionDaoDerby.createQuestion(Question toCreate)
|
void |
QuestionDao.createQuestion(Question toCreate)
|
void |
QuestionDaoDerby.deleteQuestion(Question toDelete)
|
void |
QuestionDao.deleteQuestion(Question toDelete)
|
void |
QuestionDaoDerby.deleteQuestionFromCategory(Question toDelete,
Category from)
|
void |
QuestionDao.deleteQuestionFromCategory(Question toDelete,
Category from)
|
void |
QuestionDaoDerby.moveQuestion(Question q,
java.lang.Integer fromCategoryID,
java.lang.Integer toCategoryID)
|
void |
QuestionDao.moveQuestion(Question q,
java.lang.Integer fromCategoryID,
java.lang.Integer toCategoryID)
Moves question between two categories |
void |
QuestionDaoDerby.updateQuestion(java.lang.Integer questionID,
Question toUpdate)
|
void |
QuestionDao.updateQuestion(java.lang.Integer questionID,
Question toUpdate)
|
Method parameters in sk.stuba.fiit.foo07.genex.dao with type arguments of type Question | |
---|---|
void |
QuestionDaoDerby.addQuestions(java.lang.Integer categoryID,
java.util.ArrayList<Question> toAdd)
|
void |
QuestionDao.addQuestions(java.lang.Integer categoryID,
java.util.ArrayList<Question> toAdd)
|
void |
QuestionDaoDerby.deleteQuestions(java.util.ArrayList<Question> toDelete)
|
void |
QuestionDao.deleteQuestions(java.util.ArrayList<Question> toDelete)
|
Uses of Question in sk.stuba.fiit.foo07.genex.export |
---|
Method parameters in sk.stuba.fiit.foo07.genex.export with type arguments of type Question | |
---|---|
void |
Export.exportQuestions(java.util.ArrayList<Question> questions,
java.sql.Connection con)
|
void |
ExportMoodle.exportQuestions(java.util.ArrayList<Question> questions,
java.sql.Connection con)
|
Uses of Question in sk.stuba.fiit.foo07.genex.gui |
---|
Methods in sk.stuba.fiit.foo07.genex.gui that return Question | |
---|---|
Question |
NewTestTableModel.getQuestion(int index)
|
Question |
NewQuestionDialog.showDialog()
|
Methods in sk.stuba.fiit.foo07.genex.gui that return types with arguments of type Question | |
---|---|
java.util.ArrayList<Question> |
NewTestTableModel.getQuestions()
|
Methods in sk.stuba.fiit.foo07.genex.gui with parameters of type Question | |
---|---|
void |
NewTestTableModel.addQuestion(Question toAdd,
java.lang.Float points)
|
void |
NewQuestionDialog.fillFields(Question q)
|
void |
CheckBoxTableModel.saveAnswers(Question q,
java.sql.Connection c)
|
void |
CheckBoxTableModel.setAnswers(Question q,
java.sql.Connection c)
|
void |
NewTestTableModel.setQuestion(Question toSet,
int index)
|
Method parameters in sk.stuba.fiit.foo07.genex.gui with type arguments of type Question | |
---|---|
void |
NewTestTableModel.addQuestions(java.util.ArrayList<Question> toAdd,
java.util.ArrayList<java.lang.Float> points)
|
void |
NewTestTableModel.setQuestions(java.util.ArrayList<Question> questions,
java.util.ArrayList<java.lang.Float> points)
|
Constructors in sk.stuba.fiit.foo07.genex.gui with parameters of type Question | |
---|---|
NewQuestionDialog(javax.swing.JFrame frame,
java.util.ArrayList<Category> actual,
Question question,
java.sql.Connection c)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |