Package org.speakright.core.render

Examples of org.speakright.core.render.Question


@SuppressWarnings("serial")
public class QuestionFlow extends FlowBase {
  protected Question m_quest;
 
  public QuestionFlow() {
    m_quest = new Question();
  }
View Full Code Here


   * @param gtext a grammar text (url, inline grammar, etc)
   * @param ptext prompt text
   */
  public QuestionFlow(String gtext, String ptext) {
    super();
    m_quest = new Question(new Grammar(gtext), new Prompt(ptext));
  }
View Full Code Here

TOP

Related Classes of org.speakright.core.render.Question

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.