Skip to content

Commit 528596f

Browse files
committed
8310991: missing @SInCE tags in java.xml
Reviewed-by: iris, naoto, lancea
1 parent f14245b commit 528596f

18 files changed

+36
-0
lines changed

src/java.xml/share/classes/org/w3c/dom/Attr.java

+2
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,8 @@
187187
* </tbody>
188188
* </table>
189189
* <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407'>Document Object Model (DOM) Level 3 Core Specification</a>.
190+
*
191+
* @since 1.4, DOM Level 2
190192
*/
191193
public interface Attr extends Node {
192194
/**

src/java.xml/share/classes/org/w3c/dom/CDATASection.java

+2
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,8 @@
7878
* exception when a character is missing from the encoding, making the task
7979
* of ensuring that data is not corrupted on serialization more difficult.
8080
* <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407'>Document Object Model (DOM) Level 3 Core Specification</a>.
81+
*
82+
* @since 1.4, DOM Level 2
8183
*/
8284
public interface CDATASection extends Text {
8385
}

src/java.xml/share/classes/org/w3c/dom/CharacterData.java

+2
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@
5454
* the following, the term 16-bit units is used whenever necessary to
5555
* indicate that indexing on CharacterData is done in 16-bit units.
5656
* <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407'>Document Object Model (DOM) Level 3 Core Specification</a>.
57+
*
58+
* @since 1.4, DOM Level 2
5759
*/
5860
public interface CharacterData extends Node {
5961
/**

src/java.xml/share/classes/org/w3c/dom/Comment.java

+2
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@
5454
* presence of this character sequence must generate a fatal error during
5555
* serialization.
5656
* <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407'>Document Object Model (DOM) Level 3 Core Specification</a>.
57+
*
58+
* @since 1.4, DOM Level 2
5759
*/
5860
public interface Comment extends CharacterData {
5961
}

src/java.xml/share/classes/org/w3c/dom/DOMException.java

+2
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@
5858
* methods may return error codes similar to those listed in the
5959
* corresponding method descriptions.
6060
* <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407'>Document Object Model (DOM) Level 3 Core Specification</a>.
61+
*
62+
* @since 1.4, DOM Level 2
6163
*/
6264
public class DOMException extends RuntimeException {
6365
public DOMException(short code, String message) {

src/java.xml/share/classes/org/w3c/dom/DOMImplementation.java

+2
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@
4646
* for performing operations that are independent of any particular instance
4747
* of the document object model.
4848
* <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407'>Document Object Model (DOM) Level 3 Core Specification</a>.
49+
*
50+
* @since 1.4, DOM Level 2
4951
*/
5052
public interface DOMImplementation {
5153
/**

src/java.xml/share/classes/org/w3c/dom/Document.java

+2
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@
5252
* <code>ownerDocument</code> attribute which associates them with the
5353
* <code>Document</code> within whose context they were created.
5454
* <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407'>Document Object Model (DOM) Level 3 Core Specification</a>.
55+
*
56+
* @since 1.4, DOM Level 2
5557
*/
5658
public interface Document extends Node {
5759
/**

src/java.xml/share/classes/org/w3c/dom/DocumentFragment.java

+2
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,8 @@
7777
* interface, such as <code>Node.insertBefore</code> and
7878
* <code>Node.appendChild</code>.
7979
* <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407'>Document Object Model (DOM) Level 3 Core Specification</a>.
80+
*
81+
* @since 1.4, DOM Level 2
8082
*/
8183
public interface DocumentFragment extends Node {
8284
}

src/java.xml/share/classes/org/w3c/dom/DocumentType.java

+2
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@
5151
* <p>DOM Level 3 doesn't support editing <code>DocumentType</code> nodes.
5252
* <code>DocumentType</code> nodes are read-only.
5353
* <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407'>Document Object Model (DOM) Level 3 Core Specification</a>.
54+
*
55+
* @since 1.4, DOM Level 2
5456
*/
5557
public interface DocumentType extends Node {
5658
/**

src/java.xml/share/classes/org/w3c/dom/Element.java

+2
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@
5757
* <p ><b>Note:</b> In DOM Level 2, the method <code>normalize</code> is
5858
* inherited from the <code>Node</code> interface where it was moved.
5959
* <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407'>Document Object Model (DOM) Level 3 Core Specification</a>.
60+
*
61+
* @since 1.4, DOM Level 2
6062
*/
6163
public interface Element extends Node {
6264
/**

src/java.xml/share/classes/org/w3c/dom/Entity.java

+2
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,8 @@
7171
* they are created using the <code>createEntityReference</code> method of
7272
* the <code>Document</code> interface.
7373
* <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407'>Document Object Model (DOM) Level 3 Core Specification</a>.
74+
*
75+
* @since 1.4, DOM Level 2
7476
*/
7577
public interface Entity extends Node {
7678
/**

src/java.xml/share/classes/org/w3c/dom/EntityReference.java

+2
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,8 @@
6767
* 1.0 and XML Schema, the normalization is performed after entity reference
6868
* are expanded.
6969
* <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407'>Document Object Model (DOM) Level 3 Core Specification</a>.
70+
*
71+
* @since 1.4, DOM Level 2
7072
*/
7173
public interface EntityReference extends Node {
7274
}

src/java.xml/share/classes/org/w3c/dom/NamedNodeMap.java

+2
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@
5252
* and does not imply that the DOM specifies an order to these Nodes.
5353
* <p><code>NamedNodeMap</code> objects in the DOM are live.
5454
* <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407'>Document Object Model (DOM) Level 3 Core Specification</a>.
55+
*
56+
* @since 1.4, DOM Level 2
5557
*/
5658
public interface NamedNodeMap {
5759
/**

src/java.xml/share/classes/org/w3c/dom/Node.java

+2
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,8 @@
166166
* </tbody>
167167
* </table>
168168
* <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407'>Document Object Model (DOM) Level 3 Core Specification</a>.
169+
*
170+
* @since 1.4, DOM Level 2
169171
*/
170172
public interface Node {
171173
// NodeType

src/java.xml/share/classes/org/w3c/dom/NodeList.java

+2
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@
4848
* <p>The items in the <code>NodeList</code> are accessible via an integral
4949
* index, starting from 0.
5050
* <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407'>Document Object Model (DOM) Level 3 Core Specification</a>.
51+
*
52+
* @since 1.4, DOM Level 2
5153
*/
5254
public interface NodeList {
5355
/**

src/java.xml/share/classes/org/w3c/dom/Notation.java

+2
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@
5151
* are therefore readonly.
5252
* <p>A <code>Notation</code> node does not have any parent.
5353
* <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407'>Document Object Model (DOM) Level 3 Core Specification</a>.
54+
*
55+
* @since 1.4, DOM Level 2
5456
*/
5557
public interface Notation extends Node {
5658
/**

src/java.xml/share/classes/org/w3c/dom/ProcessingInstruction.java

+2
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@
5252
* presence of this character sequence must generate a fatal error during
5353
* serialization.
5454
* <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407'>Document Object Model (DOM) Level 3 Core Specification</a>.
55+
*
56+
* @since 1.4, DOM Level 2
5557
*/
5658
public interface ProcessingInstruction extends Node {
5759
/**

src/java.xml/share/classes/org/w3c/dom/Text.java

+2
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@
6565
* the quotation mark character " or the apostrophe character ' when part of
6666
* an attribute.
6767
* <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407'>Document Object Model (DOM) Level 3 Core Specification</a>.
68+
*
69+
* @since 1.4, DOM Level 2
6870
*/
6971
public interface Text extends CharacterData {
7072
/**

0 commit comments

Comments
 (0)