1 6 7 28 package javax.xml.soap; 29 30 36 public interface Node extends org.w3c.dom.Node { 37 52 public String getValue(); 53 54 68 public void setValue(String value); 69 70 81 public void setParentElement(SOAPElement parent) throws SOAPException ; 82 83 96 public SOAPElement getParentElement(); 97 98 101 public void detachNode(); 102 103 112 public void recycleNode(); 113 114 } 115 | Popular Tags |