1 22 23 package org.enhydra.wireless.voicexml.dom; 24 25 public interface VoiceXMLSubmitElement extends VoiceXMLElement { 26 27 public void setNamelist(String newValue); 28 public String getNamelist(); 29 30 31 public void setMethod(String newValue); 32 public String getMethod(); 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 setFetchhint(String newValue); 44 public String getFetchhint(); 45 46 47 public void setEnctype(String newValue); 48 public String getEnctype(); 49 50 51 public void setExpr(String newValue); 52 public String getExpr(); 53 54 55 public void setCaching(String newValue); 56 public String getCaching(); 57 58 59 public void setFetchaudio(String newValue); 60 public String getFetchaudio(); 61 62 63 } 64 | Popular Tags |