jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/resolver/Catalog.java
changeset 41021 444f2b1bcc8c
parent 33351 6e177c9004fd
equal deleted inserted replaced
40840:1b4b5d01aa11 41021:444f2b1bcc8c
   176  * </dd>
   176  * </dd>
   177  * </dl>
   177  * </dl>
   178  *
   178  *
   179  * @see CatalogReader
   179  * @see CatalogReader
   180  * @see CatalogEntry
   180  * @see CatalogEntry
       
   181  * @deprecated The JDK internal Catalog API in package
       
   182  * {@code com.sun.org.apache.xml.internal.resolver}
       
   183  * is encapsulated in JDK 9. The entire implementation under the package is now
       
   184  * deprecated and subject to removal in a future release. Users of the API
       
   185  * should migrate to the {@linkplain javax.xml.catalog new public API}.
       
   186  * <p>
       
   187  * The new Catalog API is supported throughout the JDK XML Processors, which allows
       
   188  * the use of Catalog by simply setting a path to a Catalog file as a property.
   181  *
   189  *
   182  * @author Norman Walsh
   190  * @author Norman Walsh
   183  * <a href="mailto:Norman.Walsh@Sun.COM">Norman.Walsh@Sun.COM</a>
   191  * <a href="mailto:Norman.Walsh@Sun.COM">Norman.Walsh@Sun.COM</a>
   184  *
   192  *
   185  * @version 1.0
   193  * @version 1.0
   186  *
   194  *
   187  * <p>Derived from public domain code originally published by Arbortext,
   195  * <p>Derived from public domain code originally published by Arbortext,
   188  * Inc.</p>
   196  * Inc.</p>
   189  */
   197  */
       
   198 @Deprecated(since="9", forRemoval=true)
   190 public class Catalog {
   199 public class Catalog {
   191   /** The BASE Catalog Entry type. */
   200   /** The BASE Catalog Entry type. */
   192   public static final int BASE     = CatalogEntry.addEntryType("BASE", 1);
   201   public static final int BASE     = CatalogEntry.addEntryType("BASE", 1);
   193 
   202 
   194   /** The CATALOG Catalog Entry type. */
   203   /** The CATALOG Catalog Entry type. */