Examples of ptext()


Examples of org.speakright.core.render.Prompt.ptext()

  {
    //if the prompt added in the ctor is empty then replace it
    //This avoids empty <prompt> tags in the voicexml.
    if (m_promptL.size() == 1) {
      Prompt prompt = firstPrompt();
      if (prompt.ptext().length() == 0) {
        prompt.setPText(ptext);
        return;
      }
    }
    m_promptL.add(new Prompt(ptext));
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.