Class QuestionDTO
- java.lang.Object
-
- org.silverpeas.mobile.shared.dto.survey.QuestionDTO
-
- All Implemented Interfaces:
Serializable
public class QuestionDTO extends Object implements Serializable
- Author:
- svu
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description QuestionDTO()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<AnswerDTO>
getAnswers()
String
getId()
String
getLabel()
List<ResponseDTO>
getResponses()
String
getType()
void
setAnswers(List<AnswerDTO> answers)
void
setId(String id)
void
setLabel(String label)
void
setResponses(List<ResponseDTO> responses)
void
setType(String type)
-
-
-
Method Detail
-
setResponses
public void setResponses(List<ResponseDTO> responses)
-
getType
public String getType()
-
setType
public void setType(String type)
-
getLabel
public String getLabel()
-
setLabel
public void setLabel(String label)
-
getId
public String getId()
-
setId
public void setId(String id)
-
getResponses
public List<ResponseDTO> getResponses()
-
-