1 22 23 package org.enhydra.wireless.voicexml.dom.xerces; 24 25 public class VoiceXMLDtmfElementImpl extends VoiceXMLElementImpl implements org.enhydra.wireless.voicexml.dom.VoiceXMLDtmfElement { 26 27 public VoiceXMLDtmfElementImpl(VoiceXMLDocumentImpl owner, String namespaceURI, String qualifiedName) { 28 super(owner, namespaceURI, qualifiedName); 29 } 30 31 public void setFetchtimeout(java.lang.String newValue) { 32 setAttribute("fetchtimeout", newValue); 33 } 34 35 public String getFetchtimeout() { 36 return getAttribute("fetchtimeout"); 37 } 38 39 public void setType(java.lang.String newValue) { 40 setAttribute("type", newValue); 41 } 42 43 public String getType() { 44 return getAttribute("type"); 45 } 46 47 public void setScope(java.lang.String newValue) { 48 setAttribute("scope", newValue); 49 } 50 51 public String getScope() { 52 return getAttribute("scope"); 53 } 54 55 public void setFetchhint(java.lang.String newValue) { 56 setAttribute("fetchhint", newValue); 57 } 58 59 public String getFetchhint() { 60 return getAttribute("fetchhint"); 61 } 62 63 public void setSrc(java.lang.String newValue) { 64 setAttribute("src", newValue); 65 } 66 67 public String getSrc() { 68 return getAttribute("src"); 69 } 70 71 public void setCaching(java.lang.String newValue) { 72 setAttribute("caching", newValue); 73 } 74 75 public String getCaching() { 76 return getAttribute("caching"); 77 } 78 79 ; 80 } 81 82 83
| Popular Tags
|