public abstract class Question
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
(package private) java.lang.String |
author
The author is the instructor that wrote and added the question to the
databank
|
(package private) java.lang.String |
course
The course is the class that a question was originally made for
|
(package private) int |
difficulty
The difficulty is in a range of 1-5;
1 being easy and 5 being hard
|
(package private) java.lang.String |
lastUsed
lastUsed is the data / time of the last time a question was used on a test
|
(package private) java.lang.String |
questionText
The question text is the actual question that is being asked in
a question
|
(package private) int |
time
The time is the amount of the author believes this question should take
|
(package private) java.util.Collection<java.lang.String> |
topics
topics is a collection of strings that are tags to easily
filter through the question databank for
|
Constructor and Description |
---|
Question() |
java.lang.String questionText
java.lang.String author
java.lang.String lastUsed
java.lang.String course
java.util.Collection<java.lang.String> topics
int time
int difficulty