1 22 23 package org.enhydra.wireless.voicexml.dom.xerces; 24 25 public class VoiceXMLFieldElementImpl extends VoiceXMLElementImpl implements org.enhydra.wireless.voicexml.dom.VoiceXMLFieldElement { 26 27 public VoiceXMLFieldElementImpl(VoiceXMLDocumentImpl owner, String namespaceURI, String qualifiedName) { 28 super(owner, namespaceURI, qualifiedName); 29 } 30 31 public void setName(java.lang.String newValue) { 32 setAttribute("name", newValue); 33 } 34 35 public String getName() { 36 return getAttribute("name"); 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 setCond(java.lang.String newValue) { 48 setAttribute("cond", newValue); 49 } 50 51 public String getCond() { 52 return getAttribute("cond"); 53 } 54 55 public void setModal(boolean newValue) { 56 setAttribute("modal", newValue); 57 } 58 59 public boolean getModal() { 60 return getBooleanAttribute("modal"); 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 setSlot(java.lang.String newValue) { 72 setAttribute("slot", newValue); 73 } 74 75 public String getSlot() { 76 return getAttribute("slot"); 77 } 78 79 ; 80 } 81 82 83
| Popular Tags
|