Examples of ChoiceFlow


Examples of org.speakright.core.flows.ChoiceFlow

   * @param flow  IFlow to be executed when the user input equals <code>choice</code>
   */
  public void addCommand(String cmd, IFlow flow)
  {
    if (m_cmds == null) {
      m_cmds = new ChoiceFlow("");
    }
    m_cmds.addChoice(cmd, flow);
  }
View Full Code Here

Examples of org.speakright.core.flows.ChoiceFlow

   * @param cmd the command user input
   */
  public void addCancelCommand(String cmd)
  {
    if (m_cmds == null) {
      m_cmds = new ChoiceFlow("");
    }
    addCommand(cmd, new SROCancelCommand());
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.