src/org/w3c/dom/DocumentType.java

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

@@ -85,28 +85,28 @@
      */
     public NamedNodeMap getNotations();
 
     /**
      * The public identifier of the external subset.
-     * @since DOM Level 2
+     * @since 1.4, DOM Level 2
      */
     public String getPublicId();
 
     /**
      * The system identifier of the external subset. This may be an absolute
      * URI or not.
-     * @since DOM Level 2
+     * @since 1.4, DOM Level 2
      */
     public String getSystemId();
 
     /**
      * The internal subset as a string, or <code>null</code> if there is none.
      * This is does not contain the delimiting square brackets.
      * <p ><b>Note:</b> The actual content returned depends on how much
      * information is available to the implementation. This may vary
      * depending on various parameters, including the XML processor used to
      * build the document.
-     * @since DOM Level 2
+     * @since 1.4, DOM Level 2
      */
     public String getInternalSubset();
 
 }