Package org.encuestame.utils.json

Examples of org.encuestame.utils.json.QuestionBean


    public QuestionBean createUnitQuestionBean(
            final String questionName,
            final Long stateId,
            final Long userId,
            final List listAnswers){
         final QuestionBean question = new QuestionBean();
         question.setQuestionName(questionName);
         question.setStateId(stateId);
         question.setUserId(userId);
         question.setListAnswers(listAnswers);
         return question;
    }
View Full Code Here


             final Long questionId,
             final String questionName,
             final Long stateId,
             final Long userId,
             final List listAnswers){
          final QuestionBean question = new QuestionBean();
          question.setId(questionId);
          question.setQuestionName(questionName);
          question.setStateId(stateId);
          question.setUserId(userId);
          question.setListAnswers(listAnswers);
          return question;
     }
View Full Code Here

TOP

Related Classes of org.encuestame.utils.json.QuestionBean

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.