1 22 23 package org.enhydra.wireless.voicexml.dom; 24 25 public interface VoiceXMLChoiceElement extends VoiceXMLElement { 26 27 public void setDtmf(String newValue); 28 public String getDtmf(); 29 30 31 public void setFetchaudio(String newValue); 32 public String getFetchaudio(); 33 34 35 public void setFetchtimeout(String newValue); 36 public String getFetchtimeout(); 37 38 39 public void setNext(String newValue); 40 public String getNext(); 41 42 43 public void setEvent(String newValue); 44 public String getEvent(); 45 46 47 public void setExpr(String newValue); 48 public String getExpr(); 49 50 51 public void setFetchhint(String newValue); 52 public String getFetchhint(); 53 54 55 public void setCaching(String newValue); 56 public String getCaching(); 57 58 59 } 60 | Popular Tags |