1 22 23 package org.enhydra.wireless.voicexml.dom.xerces; 24 25 public class VoiceXMLBreakElementImpl extends VoiceXMLElementImpl implements org.enhydra.wireless.voicexml.dom.VoiceXMLBreakElement { 26 27 public VoiceXMLBreakElementImpl(VoiceXMLDocumentImpl owner, String namespaceURI, String qualifiedName) { 28 super(owner, namespaceURI, qualifiedName); 29 } 30 31 public void setSize(java.lang.String newValue) { 32 setAttribute("size", newValue); 33 } 34 35 public String getSize() { 36 return getAttribute("size"); 37 } 38 39 public void setMsecs(java.lang.String newValue) { 40 setAttribute("msecs", newValue); 41 } 42 43 public String getMsecs() { 44 return getAttribute("msecs"); 45 } 46 47 ; 48 } 49 50 51 | Popular Tags |