Interface SiteSetupQuestionAnswer
-
- All Superinterfaces:
Serializable
public interface SiteSetupQuestionAnswer extends Serializable
The SiteSetupQuestion object is to store answers to SiteSetupQuestion.- Author:
- zqian
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAnswer()get the answer contentStringgetAnswerString()if the answer is fill-in-blank, get the input valueStringgetId()get the associated question idbooleangetIsFillInBlank()whether the answer is fill-in-blankIntegergetOrderNum()get the order numberSiteSetupQuestiongetQuestion()get the associated questionvoidsetAnswer(String answer)set the answer contentvoidsetAnswerString(String AnswerString)if the answer is fill-in-blank, set the input valuevoidsetId(String id)set the associated question idvoidsetIsFillInBlank(boolean isFillInBlank)set the fill-in-blank typevoidsetOrderNum(Integer orderNum)set the order numbervoidsetQuestion(SiteSetupQuestion question)set the question
-
-
-
Method Detail
-
getId
String getId()
get the associated question id- Returns:
-
setId
void setId(String id)
set the associated question id- Parameters:
id-
-
getIsFillInBlank
boolean getIsFillInBlank()
whether the answer is fill-in-blank- Returns:
-
setIsFillInBlank
void setIsFillInBlank(boolean isFillInBlank)
set the fill-in-blank type- Parameters:
isFillInBlank-
-
getAnswer
String getAnswer()
get the answer content- Returns:
-
setAnswer
void setAnswer(String answer)
set the answer content- Parameters:
answer-
-
getAnswerString
String getAnswerString()
if the answer is fill-in-blank, get the input value- Returns:
-
setAnswerString
void setAnswerString(String AnswerString)
if the answer is fill-in-blank, set the input value- Parameters:
fillInBlankString-
-
getQuestion
SiteSetupQuestion getQuestion()
get the associated question- Returns:
-
setQuestion
void setQuestion(SiteSetupQuestion question)
set the question
-
getOrderNum
Integer getOrderNum()
get the order number- Returns:
-
setOrderNum
void setOrderNum(Integer orderNum)
set the order number- Parameters:
orderNum-
-
-