src/org/w3c/dom/DOMImplementation.java

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

@@ -75,11 +75,11 @@
      *   <br>NAMESPACE_ERR: Raised if the <code>qualifiedName</code> is
      *   malformed.
      *   <br>NOT_SUPPORTED_ERR: May be raised if the implementation does not
      *   support the feature "XML" and the language exposed through the
      *   Document does not support XML Namespaces (such as [<a href='http://www.w3.org/TR/1999/REC-html401-19991224/'>HTML 4.01</a>]).
-     * @since DOM Level 2
+     * @since 1.4, DOM Level 2
      */
     public DocumentType createDocumentType(String qualifiedName,
                                            String publicId,
                                            String systemId)
                                            throws DOMException;

@@ -127,11 +127,11 @@
      *   been used with a different document or was created from a different
      *   implementation.
      *   <br>NOT_SUPPORTED_ERR: May be raised if the implementation does not
      *   support the feature "XML" and the language exposed through the
      *   Document does not support XML Namespaces (such as [<a href='http://www.w3.org/TR/1999/REC-html401-19991224/'>HTML 4.01</a>]).
-     * @since DOM Level 2
+     * @since 1.4, DOM Level 2
      */
     public Document createDocument(String namespaceURI,
                                    String qualifiedName,
                                    DocumentType doctype)
                                    throws DOMException;

@@ -155,11 +155,11 @@
      *   implements the <code>DOMImplementation</code> interface, it must
      *   delegate to the primary core <code>DOMImplementation</code> and not
      *   return results inconsistent with the primary core
      *   <code>DOMImplementation</code> such as <code>hasFeature</code>,
      *   <code>getFeature</code>, etc.
-     * @since DOM Level 3
+     * @since 1.5, DOM Level 3
      */
     public Object getFeature(String feature,
                              String version);
 
 }