< prev index next >

src/java.xml/share/classes/javax/xml/stream/XMLInputFactory.java

Print this page

        

@@ -158,11 +158,11 @@
    * Create a new instance of the factory.
    * <p>
    * This static method creates a new factory instance.
    * This method uses the following ordered lookup procedure to determine
    * the XMLInputFactory implementation class to load:
-   * </p>
+   * 
    * <ul>
    * <li>
    *   <p>Use the javax.xml.stream.XMLInputFactory system property.
    * </li>
    * <li>

@@ -199,16 +199,15 @@
    * </li>
    * </ul>
    * <p>
    *   Once an application has obtained a reference to a XMLInputFactory it
    *   can use the factory to configure and obtain stream instances.
-   * </p>
    * <p>
    *   Note that this is a new method that replaces the deprecated newInstance() method.
    *     No changes in behavior are defined by this replacement method relative to
    *     the deprecated method.
-   * </p>
+   *
    * @throws FactoryConfigurationError in case of {@linkplain
    *   java.util.ServiceConfigurationError service configuration error} or if
    *   the implementation is not available or cannot be instantiated.
    */
   public static XMLInputFactory newFactory()

@@ -243,11 +242,10 @@
    * Create a new instance of the factory.
    * If the classLoader argument is null, then the ContextClassLoader is used.
    * <p>
    * This method uses the following ordered lookup procedure to determine
    * the XMLInputFactory implementation class to load:
-   * <p>
    * <ul>
    * <li>
    *   <p>
    *   Use the value of the system property identified by {@code factoryId}.
    * </li>

@@ -486,20 +484,19 @@
    * IllegalArgumentException to signal that an unsupported property may not be
    * set with the specified value.
    * <p>
    * All implementations that implement JAXP 1.5 or newer are required to
    * support the {@link javax.xml.XMLConstants#ACCESS_EXTERNAL_DTD} property.
-   * </p>
    * <ul>
    *   <li>
    *        <p>
    *        Access to external DTDs, external Entity References is restricted to the
    *        protocols specified by the property. If access is denied during parsing
    *        due to the restriction of this property, {@link javax.xml.stream.XMLStreamException}
    *        will be thrown by the {@link javax.xml.stream.XMLStreamReader#next()} or
    *        {@link javax.xml.stream.XMLEventReader#nextEvent()} method.
-   *        </p>
+   *
    *   </li>
    * </ul>
    * @param name The name of the property (may not be null)
    * @param value The value of the property
    * @throws java.lang.IllegalArgumentException if the property is not supported
< prev index next >