src/org/w3c/dom/Attr.java

Print this page
rev 602 : 8047723: @since tag cleanup in jaxp
Reviewed-by:

*** 237,257 **** throws DOMException; /** * The <code>Element</code> node this attribute is attached to or * <code>null</code> if this attribute is not in use. ! * @since DOM Level 2 */ public Element getOwnerElement(); /** * The type information associated with this attribute. While the type * information contained in this attribute is guarantee to be correct * after loading the document or invoking * <code>Document.normalizeDocument()</code>, <code>schemaTypeInfo</code> * may not be reliable if the node was moved. ! * @since DOM Level 3 */ public TypeInfo getSchemaTypeInfo(); /** * Returns whether this attribute is known to be of type ID (i.e. to --- 237,257 ---- throws DOMException; /** * The <code>Element</code> node this attribute is attached to or * <code>null</code> if this attribute is not in use. ! * @since 1.4, DOM Level 2 */ public Element getOwnerElement(); /** * The type information associated with this attribute. While the type * information contained in this attribute is guarantee to be correct * after loading the document or invoking * <code>Document.normalizeDocument()</code>, <code>schemaTypeInfo</code> * may not be reliable if the node was moved. ! * @since 1.5, DOM Level 3 */ public TypeInfo getSchemaTypeInfo(); /** * Returns whether this attribute is known to be of type ID (i.e. to
*** 295,304 **** * <code>Document.normalizeDocument()</code>, all user-determined ID * attributes are reset and all attribute nodes ID information are then * reevaluated in accordance to the schema used. As a consequence, if * the <code>Attr.schemaTypeInfo</code> attribute contains an ID type, * <code>isId</code> will always return true. ! * @since DOM Level 3 */ public boolean isId(); } --- 295,304 ---- * <code>Document.normalizeDocument()</code>, all user-determined ID * attributes are reset and all attribute nodes ID information are then * reevaluated in accordance to the schema used. As a consequence, if * the <code>Attr.schemaTypeInfo</code> attribute contains an ID type, * <code>isId</code> will always return true. ! * @since 1.5, DOM Level 3 */ public boolean isId(); }