Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Interface
com.RuntimeCollective.questionnaire.bean.Question

Uses of Question in com.RuntimeCollective.questionnaire.bean
 

Classes in com.RuntimeCollective.questionnaire.bean that implement Question
 class ManyInManyStringsQuestion
          Question implementation which offers the choice of many Strings between many.
 class OneInManyStringsQuestion
          Question implementation which offers the choice of one String between many.
 class SimpleQuestion
          Basic and incomplete implementation of the Question interface, which you can subclass at will to create new types of Questions.
 class XInManyStringsQuestion
          Common superclass for OneInManyStringsQuestion and ManyInManyStringsQuestion - contains methods useful for both.
 

Methods in com.RuntimeCollective.questionnaire.bean that return Question
 Question SimpleAnswer.getAnsweredQuestion()
          Get the AnsweredQuestion of this Answer
 Question Questionnaire.getQuestion(int position)
          Get a Question from this Questionnaire
 Question Answer.getAnsweredQuestion()
          Get the AnsweredQuestion of this Answer
 

Methods in com.RuntimeCollective.questionnaire.bean with parameters of type Question
 void SimpleAnswer.setAnsweredQuestion(Question answeredQuestion)
          Set the AnsweredQuestion of this Answer
 void Questionnaire.addQuestion(Question question)
          Add a Question to this Questionnaire
 void Questionnaire.removeQuestion(Question question)
          Remove a Question from this Questionnaire
 void Questionnaire.setQuestion(int position, Question question)
          Set a Question in this Questionnaire
 int Questionnaire.getIndexOfQuestion(Question question)
          Get the (first) index of a Question in this Questionnaire
 void Answer.setAnsweredQuestion(Question answeredQuestion)
          Set the AnsweredQuestion of this Answer