src/share/jaxws_classes/javax/xml/soap/Node.java

Print this page
rev 507 : 8047724: @since tag cleanup in jaxws
Reviewed-by:

*** 28,37 **** --- 28,39 ---- /** * A representation of a node (element) in an XML document. * This interface extnends the standard DOM Node interface with methods for * getting and setting the value of a node, for * getting and setting the parent of a node, and for removing a node. + * + * @since 1.6 */ public interface Node extends org.w3c.dom.Node { /** * Returns the value of this node if this is a <code>Text</code> node or the * value of the immediate child of this node otherwise.
*** 59,69 **** * * @exception IllegalStateException if the node is not a <code>Text</code> * node and either has more than one child node or has a child * node that is not a <code>Text</code> node. * ! * @since SAAJ 1.2 */ public void setValue(String value); /** * Sets the parent of this <code>Node</code> object to the given --- 61,71 ---- * * @exception IllegalStateException if the node is not a <code>Text</code> * node and either has more than one child node or has a child * node that is not a <code>Text</code> node. * ! * @since 1.6, SAAJ 1.2 */ public void setValue(String value); /** * Sets the parent of this <code>Node</code> object to the given