1 22 23 package org.enhydra.wireless.voicexml.dom.xerces; 24 25 public class VoiceXMLLinkElementImpl extends VoiceXMLElementImpl implements org.enhydra.wireless.voicexml.dom.VoiceXMLLinkElement { 26 27 public VoiceXMLLinkElementImpl(VoiceXMLDocumentImpl owner, String namespaceURI, String qualifiedName) { 28 super(owner, namespaceURI, qualifiedName); 29 } 30 31 public void setFetchaudio(java.lang.String newValue) { 32 setAttribute("fetchaudio", newValue); 33 } 34 35 public String getFetchaudio() { 36 return getAttribute("fetchaudio"); 37 } 38 39 public void setFetchtimeout(java.lang.String newValue) { 40 setAttribute("fetchtimeout", newValue); 41 } 42 43 public String getFetchtimeout() { 44 return getAttribute("fetchtimeout"); 45 } 46 47 public void setNext(java.lang.String newValue) { 48 setAttribute("next", newValue); 49 } 50 51 public String getNext() { 52 return getAttribute("next"); 53 } 54 55 public void setEvent(java.lang.String newValue) { 56 setAttribute("event", newValue); 57 } 58 59 public String getEvent() { 60 return getAttribute("event"); 61 } 62 63 public void setExpr(java.lang.String newValue) { 64 setAttribute("expr", newValue); 65 } 66 67 public String getExpr() { 68 return getAttribute("expr"); 69 } 70 71 public void setFetchhint(java.lang.String newValue) { 72 setAttribute("fetchhint", newValue); 73 } 74 75 public String getFetchhint() { 76 return getAttribute("fetchhint"); 77 } 78 79 public void setCaching(java.lang.String newValue) { 80 setAttribute("caching", newValue); 81 } 82 83 public String getCaching() { 84 return getAttribute("caching"); 85 } 86 87 ; 88 } 89 90 91
| Popular Tags
|