1 22 23 package org.enhydra.wireless.voicexml.dom; 24 25 public interface VoiceXMLPromptElement extends VoiceXMLElement { 26 27 public void setCond(String newValue); 28 public String getCond(); 29 30 31 public void setCount(String newValue); 32 public String getCount(); 33 34 35 public void setTimeout(String newValue); 36 public String getTimeout(); 37 38 39 public void setBargein(boolean newValue); 40 public boolean getBargein(); 41 42 43 } 44 | Popular Tags |