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