Lines Matching refs:catalogs

87  * specifies alternate catalogs for some public identifiers. The delegated
88 * catalogs are not loaded until they are needed, but they are cached
91 * specifies alternate catalogs for some system identifiers. The delegated
92 * catalogs are not loaded until they are needed, but they are cached
95 * specifies alternate catalogs for some URIs. The delegated
96 * catalogs are not loaded until they are needed, but they are cached
146 * <p>Note that subordinate catalogs (all catalogs except the first,
147 * including CATALOG and DELEGATE* catalogs) are only loaded if and when
152 * semantics to be implemented for TR9401 text-based catalogs, XML
153 * catalogs, or any number of other storage formats.</p>
155 * <p>Additional catalogs may also be loaded with the
181 * <dd><p>Fixed a bug in the calculation of the list of subordinate catalogs.
183 * two catalogs indefinitely.</p>
316 * them, but they may in turn have subordinate catalogs.</p>
320 * processing, one of these catalogs has to be loaded, the resulting
324 protected Vector catalogs = new Vector();
435 * <p>Note that subordinate catalogs (created by CATALOG or
494 * All new catalogs are managed by the same CatalogManager.
553 * catalogs specified in the <tt>xml.catalog.files</tt> property
556 * @throws MalformedURLException One of the system catalogs is
558 * @throws IOException One of the system catalogs cannot be read.
563 Vector catalogs = catalogManager.getCatalogFiles();
564 if (catalogs != null) {
565 for (int count = 0; count < catalogs.size(); count++) {
566 catalogFiles.addElement(catalogs.elementAt(count));
604 // Put the file into the list of catalogs to process...
609 // Now process all the pending catalogs...
647 // Now process all the pending catalogs...
709 * Parse all of the pending catalogs.
711 * <p>Catalogs may refer to other catalogs, this method parses
726 // Put the rest of the catalogs on the end of the new list
758 if (catalogEntries.size() == 0 && catalogs.size() == 0) {
759 // We haven't parsed any catalogs yet, let this
769 catalogs.addElement(catfile);
781 // Put the rest of the catalogs on the end of the new list
1115 * Parse all subordinate catalogs.
1117 * <p>This method recursively parses all of the subordinate catalogs.
1123 * <li><p>Delegated catalogs are re-parsed each time they are needed
1129 * <li><p>If you add new catalogs with <code>parseCatalog</code>, they
1136 * catalogs.</p>
1146 // Parse all the subordinate catalogs
1147 for (int catPos = 0; catPos < catalogs.size(); catPos++) {
1151 c = (Catalog) catalogs.elementAt(catPos);
1153 String catfile = (String) catalogs.elementAt(catPos);
1157 catalogs.setElementAt(c, catPos);
1162 // Parse all the DELEGATE catalogs
1255 // Otherwise, look in the subordinate catalogs
1368 // Otherwise, look in the subordinate catalogs
1454 // Otherwise, look in the subordinate catalogs
1523 // Otherwise, look in the subordinate catalogs
1700 // Otherwise, look in the subordinate catalogs
1864 // Otherwise, look in the subordinate catalogs
1987 * Search the subordinate catalogs, in order, looking for a match.
2020 for (int catPos = 0; catPos < catalogs.size(); catPos++) {
2024 c = (Catalog) catalogs.elementAt(catPos);
2026 String catfile = (String) catalogs.elementAt(catPos);
2040 catalogs.setElementAt(c, catPos);
2180 * Add to the current list of delegated catalogs.