jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/resolver/tools/CatalogResolver.java
changeset 41021 444f2b1bcc8c
parent 26516 8e6a45c22cea
equal deleted inserted replaced
40840:1b4b5d01aa11 41021:444f2b1bcc8c
    50  * Committee specification.</p>
    50  * Committee specification.</p>
    51  *
    51  *
    52  * @see Catalog
    52  * @see Catalog
    53  * @see org.xml.sax.EntityResolver
    53  * @see org.xml.sax.EntityResolver
    54  * @see javax.xml.transform.URIResolver
    54  * @see javax.xml.transform.URIResolver
       
    55  * @deprecated The JDK internal Catalog API in package
       
    56  * {@code com.sun.org.apache.xml.internal.resolver}
       
    57  * is encapsulated in JDK 9. The entire implementation under the package is now
       
    58  * deprecated and subject to removal in a future release. Users of the API
       
    59  * should migrate to the {@linkplain javax.xml.catalog new public API}.
       
    60  * <p>
       
    61  * The new Catalog API is supported throughout the JDK XML Processors, which allows
       
    62  * the use of Catalog by simply setting a path to a Catalog file as a property.
    55  *
    63  *
    56  * @author Norman Walsh
    64  * @author Norman Walsh
    57  * <a href="mailto:Norman.Walsh@Sun.COM">Norman.Walsh@Sun.COM</a>
    65  * <a href="mailto:Norman.Walsh@Sun.COM">Norman.Walsh@Sun.COM</a>
    58  *
    66  *
    59  * @version 1.0
    67  * @version 1.0
    60  */
    68  */
       
    69 @Deprecated(since="9", forRemoval=true)
    61 public class CatalogResolver implements EntityResolver, URIResolver {
    70 public class CatalogResolver implements EntityResolver, URIResolver {
    62   /** Make the parser Namespace aware? */
    71   /** Make the parser Namespace aware? */
    63   public boolean namespaceAware = true;
    72   public boolean namespaceAware = true;
    64 
    73 
    65   /** Make the parser validating? */
    74   /** Make the parser validating? */