From 9b33aaf27cd8f73402ee9967c6b0fd76a90f8ebe Mon Sep 17 00:00:00 2001 From: Jesse Morgan Date: Wed, 21 Aug 2013 22:35:32 -0700 Subject: Adding images, creating circle questions and misc. fixes. --- src/com/p4square/grow/backend/resources/Question.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/com/p4square/grow/backend/resources/Question.java') diff --git a/src/com/p4square/grow/backend/resources/Question.java b/src/com/p4square/grow/backend/resources/Question.java index c53883c..e90ca77 100644 --- a/src/com/p4square/grow/backend/resources/Question.java +++ b/src/com/p4square/grow/backend/resources/Question.java @@ -10,12 +10,12 @@ import java.util.Map; /** * Model of an assessment question. - * + * * @author Jesse Morgan */ class Question { public static enum QuestionType { - TEXT, IMAGE, SLIDER, QUAD; + TEXT, IMAGE, SLIDER, QUAD, CIRCLE; } private final String mQuestionId; @@ -45,7 +45,7 @@ class Question { mAnswers.put(id, answerObj); } } - + public String getId() { return mQuestionId; } -- cgit v1.2.3