1 22 23 package org.enhydra.wireless.voicexml.dom; 24 25 public interface VoiceXMLGrammarElement extends VoiceXMLElement { 26 27 public void setFetchtimeout(String newValue); 28 public String getFetchtimeout(); 29 30 31 public void setType(String newValue); 32 public String getType(); 33 34 35 public void setScope(String newValue); 36 public String getScope(); 37 38 39 public void setFetchhint(String newValue); 40 public String getFetchhint(); 41 42 43 public void setSrc(String newValue); 44 public String getSrc(); 45 46 47 public void setCaching(String newValue); 48 public String getCaching(); 49 50 51 } 52 | Popular Tags |