src/javax/xml/parsers/DocumentBuilderFactory.java

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

@@ -33,11 +33,11 @@
  *
  * @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
  * @author <a href="mailto:Neeraj.Bajaj@sun.com">Neeraj Bajaj</a>
  *
  * @version $Revision: 1.9 $, $Date: 2010/05/25 16:19:44 $
-
+ * @since 1.4
  */
 
 public abstract class DocumentBuilderFactory {
 
     private boolean validating = false;

@@ -438,10 +438,11 @@
      * @param value Is feature state <code>true</code> or <code>false</code>.
      *
      * @throws ParserConfigurationException if this <code>DocumentBuilderFactory</code> or the <code>DocumentBuilder</code>s
      *   it creates cannot support this feature.
      * @throws NullPointerException If the <code>name</code> parameter is null.
+     * @since 1.5
      */
     public abstract void setFeature(String name, boolean value)
             throws ParserConfigurationException;
 
     /**

@@ -459,10 +460,11 @@
      *
      * @return State of the named feature.
      *
      * @throws ParserConfigurationException if this <code>DocumentBuilderFactory</code>
      *   or the <code>DocumentBuilder</code>s it creates cannot support this feature.
+     * @since 1.5
      */
     public abstract boolean getFeature(String name)
             throws ParserConfigurationException;