Searched refs:Catalog (Results 1 - 11 of 11) sorted by relevance

/openjdk10/jaxp/src/java.xml/share/classes/javax/xml/catalog/
H A DCatalog.java31 * The Catalog class represents an entity Catalog as defined by
63 public interface Catalog { interface
97 * Feature PREFER in the table Catalog Features</a> in class
144 * input list) when the Catalog object is created by the {@link CatalogManager}.
153 public Stream<Catalog> catalogs();
H A DCatalogManager.java30 * The Catalog Manager manages the creation of XML Catalogs and Catalog Resolvers.
42 * Creates a {@code Catalog} object using the specified feature settings and
57 * is ignored. In case all entries are invalid, the resulting Catalog object
58 * will contain no Catalog elements. Any matching operation using the Catalog
64 * @return an instance of a {@code Catalog}
70 public static Catalog catalog(CatalogFeatures features, URI... uris) {
83 public static CatalogResolver catalogResolver(Catalog catalog) {
119 Catalog catalo
[all...]
H A DCatalogImpl.java52 * Implementation of the Catalog.
56 class CatalogImpl extends GroupEntry implements Catalog {
58 //Catalog level, 0 means the top catalog
67 //indicate whether the Catalog is empty
70 //Current parsed Catalog
89 * Construct a Catalog with specified URI.
101 * Construct a Catalog with specified URI.
133 In accordance with 8. Resource Failures of the Catalog spec, missing
134 Catalog entry files are to be ignored.
205 * Resets the Catalog instanc
[all...]
H A DCatalogResolverImpl.java53 Catalog catalog;
56 * Construct an instance of the CatalogResolver from a Catalog.
58 * @param catalog A Catalog.
60 public CatalogResolverImpl(Catalog catalog) {
264 * Implements LSInput. All that we need is the systemId since the Catalog
H A DGroupEntry.java43 //Unmodifiable features when the Catalog is created
65 A list of Catalog Ids that have already been searched in a matching
66 operation. Check this list before constructing new Catalog to avoid circular
139 * @param parent the parent Catalog
395 * @param type the type of the Catalog entry
424 Catalog delegateCatalog = loadDelegateCatalog(catalog, catalogId);
462 Catalog loadDelegateCatalog(CatalogImpl parent, URI catalogURI) {
480 * Returns a previously loaded Catalog object if found.
483 * @return a Catalog object previously loaded, or null if none in the saved
502 * doesn't, returns false to ignore it as specified in the Catalog
[all...]
H A DUtil.java102 Iterator<Catalog> iter = catalog.catalogs().iterator();
131 * Catalog standard requires that such resources be ignored.
H A DCatalogReader.java47 /** URI of the W3C XML Schema for OASIS XML Catalog files. */
50 /** Public identifier for OASIS XML Catalog files. */
64 //The Catalog instance
83 * Constructs an instance with a Catalog object and parser.
85 * @param catalog The Catalog object that represents a catalog
88 public CatalogReader(Catalog catalog, SAXParser parser) {
/openjdk10/jaxp/test/javax/xml/jaxp/functional/catalog/
H A DDeferFeatureTest.java35 import javax.xml.catalog.Catalog;
61 public void testDeferFeature(Catalog catalog, int catalogCount)
67 public void testDeferFeatureByResolve(Catalog catalog, int catalogCount)
101 private Catalog createCatalog(CatalogFeatures feature) {
105 private CatalogResolver createResolver(Catalog catalog) {
109 private int loadedCatalogCount(Catalog catalog) throws Exception {
/openjdk10/jaxp/test/javax/xml/jaxp/unittest/catalog/
H A DCatalogFileInputTest.java40 import javax.xml.catalog.Catalog;
61 * @summary Verifies that the Catalog API accepts valid URIs only;
106 * Verifies that the Catalog can be created with file system paths including JAR
120 Catalog c = CatalogManager.catalog(FEATURES, uri != null? URI.create(uri) : null);
154 Catalog c = CatalogManager.catalog(FEATURES, file != null? URI.create(file) : null);
155 System.err.println("Catalog =" + c);
175 Catalog c = CatalogManager.catalog(FEATURES, uri);
H A DCatalogTest.java34 import javax.xml.catalog.Catalog;
75 * @summary Tests basic Catalog functions.
377 * Verifies that the Catalog matches specified publicId or systemId and returns
384 Catalog c = CatalogManager.catalog(
437 Catalog catalog = CatalogManager.catalog(features, catalogFile);
453 Catalog catalog = CatalogManager.catalog(features, catalogFile);
660 Catalog's matching operation.
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/dtdparser/
H A DDTDParser.java2413 static final Catalog messages = new Catalog();
2415 static final class Catalog extends MessageCatalog { class in class:DTDParser
2417 Catalog() { method in class:DTDParser.Catalog

Completed in 257 milliseconds