Searched defs:catalog (Results 1 - 16 of 16) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/readers/
H A DCatalogReader.java5 // CatalogReader.java - An interface for reading catalog files
49 * Read a catalog from a file.
51 * <p>This class reads a catalog from a URL.</p>
53 * @param catalog The catalog for which this reader is called.
58 * @throws UnknownCatalogFormatException if the catalog format is
60 * @throws UnparseableCatalogException if the catalog cannot be parsed.
63 public void readCatalog(Catalog catalog, String fileUrl) argument
67 * Read a catalog from an input stream.
69 * <p>This class reads a catalog fro
79 readCatalog(Catalog catalog, InputStream is) argument
[all...]
H A DDOMCatalogParser.java5 // DOMCatalogParser.java - An interface for reading catalog files
44 * Parse a DOM node as a catalog entry.
47 * construct appropriate catalog entry(ies) from it.</p>
49 * @param catalog The catalog for which this node is being considered.
50 * @param node The DOM Node from the catalog.
52 public void parseCatalogEntry(Catalog catalog, Node node); argument
H A DSAXCatalogParser.java5 // SAXCatalogParser.java - An interface for reading catalog files
44 public void setCatalog(Catalog catalog); argument
H A DTR9401CatalogReader.java43 * <dt><b>xml.catalog.debug</b></dt>
65 * @param catalog The Catalog to populate
69 * @throws IOException Error reading catalog file
71 public void readCatalog(Catalog catalog, InputStream is) argument
88 catalog.unknownEntry(unknownEntry);
113 catalog.unknownEntry(unknownEntry);
121 catalog.addEntry(new CatalogEntry(entryToken, args));
129 catalog.getCatalogManager().debug.message(1, "Invalid catalog entry", token);
132 catalog
[all...]
H A DDOMCatalogReader.java58 * CatalogParsers to actually build the catalog.</p>
94 * for this kind of catalog.
107 * Get the name of the parser class for a given catalog type.
131 * Read a catalog from an input stream.
133 * <p>This class reads a catalog from an input stream:</p>
137 * parser to instantiate for this catalog.</li>
138 * <li>It constructs a DOM Document from the catalog and</li>
141 * appropriate calls back into the catalog to add entries for the
142 * entries in the catalog. It is free to do this in whatever manner
147 * @param catalog Th
156 readCatalog(Catalog catalog, InputStream is) argument
240 readCatalog(Catalog catalog, String fileUrl) argument
[all...]
H A DTextCatalogReader.java51 /** The input stream used to read the catalog */
55 * Character lookahead stack. Reading a catalog sometimes requires
61 * Token stack. Recognizing an unexpected catalog entry requires
69 /** Are keywords in the catalog case sensitive? */
86 * Start parsing a text catalog file. The file is
90 * @param fileUrl The URL or filename of the catalog file to process
93 * @throws IOException Error reading catalog file
95 public void readCatalog(Catalog catalog, String fileUrl) argument
107 readCatalog(catalog, urlCon.getInputStream());
109 catalog
114 readCatalog(Catalog catalog, InputStream is) argument
[all...]
H A DXCatalogReader.java47 /** The catalog object needs to be stored by the object so that
50 protected Catalog catalog = null; field in class:XCatalogReader
52 /** Set the current catalog. */
53 public void setCatalog (Catalog catalog) { argument
54 this.catalog = catalog;
57 /** Get the current catalog. */
59 return catalog;
89 * from the plain catalog format and instantiates CatalogEntry
109 entryType = catalog
[all...]
H A DOASISXMLCatalogReader.java48 /** The catalog object needs to be stored by the object so that
51 protected Catalog catalog = null; field in class:OASISXMLCatalogReader
54 public static final String namespaceName = "urn:oasis:names:tc:entity:xmlns:xml:catalog";
56 /** The namespace name of OASIS ERTC TR9401 catalog extension */
57 public static final String tr9401NamespaceName = "urn:oasis:names:tc:entity:xmlns:tr9401:catalog";
63 /** Set the current catalog. */
64 public void setCatalog (Catalog catalog) { argument
65 this.catalog = catalog;
66 debug = catalog
[all...]
H A DSAXCatalogReader.java67 * CatalogParsers to actually build the catalog.</p>
98 /** The parser in use for the current catalog. */
107 private Catalog catalog; field in class:SAXCatalogReader
133 * This is a bit of a hack. Anyway, whenever we read for a catalog,
135 * from the catalog's manager so that we can use it to print messages.
186 * @param catalog The catalog to which this catalog file belongs
187 * @param fileUrl The URL or filename of the catalog file to process
190 * @throws IOException Error reading catalog fil
192 readCatalog(Catalog catalog, String fileUrl) argument
225 readCatalog(Catalog catalog, InputStream is) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/tools/
H A DCatalogResolver.java74 /** The underlying catalog */
75 private Catalog catalog = null; field in class:CatalogResolver
77 /** The catalog manager */
96 /** Initialize catalog */
98 catalog = catalogManager.getCatalog();
101 /** Return the underlying catalog */
103 return catalog;
129 if (catalog == null) {
130 catalogManager.debug.message(1, "Catalog resolution attempted with null catalog; ignored");
136 resolved = catalog
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/xml/
H A DXmlUtil.java252 * Gets an EntityResolver using XML catalog
258 // Using static catalog may result in to sharing of the catalog by multiple apps running in a container
260 Catalog catalog = manager.getCatalog();
263 catalog.parseCatalog(catalogUrl);
268 return workaroundCatalogResolver(catalog);
272 * Gets a default EntityResolver for catalog at META-INF/jaxws-catalog.xml
279 // Using static catalog may result in to sharing of the catalog b
310 workaroundCatalogResolver(final Catalog catalog) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DXMLCatalogResolver.java49 * <p>The catalog resolver handles the resolution of external
61 * catalog resolution outside of a parsing context. It may be shared
70 /** Internal catalog manager for Apache catalogs. **/
73 /** Internal catalog structure. **/
76 /** An array of catalog URIs. **/
90 * the parser or some other component performing catalog
97 * <p>Constructs a catalog resolver with a default configuration.</p>
104 * <p>Constructs a catalog resolver with the given
114 * <p>Constructs a catalog resolver with the given
126 * <p>Returns the initial list of catalog entr
575 attachReaderToCatalog(Catalog catalog) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DCachedRowSetWriter.java1086 String catalog = callerMd.getCatalogName(1);
1105 selectCmd += "FROM " + buildTableName(dbmd, catalog, schema, table);
1110 updateCmd = "UPDATE " + buildTableName(dbmd, catalog, schema, table);
1136 insertCmd = "INSERT INTO " + buildTableName(dbmd, catalog, schema, table);
1157 deleteCmd = "DELETE FROM " + buildTableName(dbmd, catalog, schema, table);
1167 * Returns a fully qualified table name built from the given catalog and
1173 * @param catalog a <code>String</code> object with the rowset's catalog
1182 String catalog, String schema, String table) throws SQLException {
1185 // white spaces can never be catalog, schem
1181 buildTableName(DatabaseMetaData dbmd, String catalog, String schema, String table) argument
[all...]
/openjdk7/jdk/src/share/classes/java/sql/
H A DConnection.java345 * Sets the given catalog name in order to select
359 * @param catalog the name of a catalog (subspace in this
365 void setCatalog(String catalog) throws SQLException; argument
368 * Retrieves this <code>Connection</code> object's current catalog name.
370 * @return the current catalog name or <code>null</code> if there is none
H A DDatabaseMetaData.java363 * the catalog search parameters that are a pattern (and therefore use one
657 * Retrieves the database vendor's preferred term for "catalog".
659 * @return the vendor term for "catalog"
665 * Retrieves whether a catalog appears at the start of a fully qualified
666 * table name. If not, the catalog appears at the end.
668 * @return <code>true</code> if the catalog name appears at the beginning
676 * separator between a catalog and table name.
724 * Retrieves whether a catalog name can be used in a data manipulation statement.
732 * Retrieves whether a catalog name can be used in a procedure call statement.
740 * Retrieves whether a catalog nam
1256 getProcedures(String catalog, String schemaPattern, String procedureNamePattern) argument
1379 getProcedureColumns(String catalog, String schemaPattern, String procedureNamePattern, String columnNamePattern) argument
1521 getTables(String catalog, String schemaPattern, String tableNamePattern, String types[]) argument
1664 getColumns(String catalog, String schemaPattern, String tableNamePattern, String columnNamePattern) argument
1734 getColumnPrivileges(String catalog, String schema, String table, String columnNamePattern) argument
1777 getTablePrivileges(String catalog, String schemaPattern, String tableNamePattern) argument
1831 getBestRowIdentifier(String catalog, String schema, String table, int scope, boolean nullable) argument
1942 getVersionColumns(String catalog, String schema, String table) argument
2004 getPrimaryKeys(String catalog, String schema, String table) argument
2082 getImportedKeys(String catalog, String schema, String table) argument
2266 getExportedKeys(String catalog, String schema, String table) argument
2553 getIndexInfo(String catalog, String schema, String table, boolean unique, boolean approximate) argument
2818 getUDTs(String catalog, String schemaPattern, String typeNamePattern, int[] types) argument
2922 getSuperTypes(String catalog, String schemaPattern, String typeNamePattern) argument
2959 getSuperTables(String catalog, String schemaPattern, String tableNamePattern) argument
3068 getAttributes(String catalog, String schemaPattern, String typeNamePattern, String attributeNamePattern) argument
3247 getSchemas(String catalog, String schemaPattern) argument
3344 getFunctions(String catalog, String schemaPattern, String functionNamePattern) argument
3440 getFunctionColumns(String catalog, String schemaPattern, String functionNamePattern, String columnNamePattern) argument
3640 getPseudoColumns(String catalog, String schemaPattern, String tableNamePattern, String columnNamePattern) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/logging/
H A DLogger.java186 private ResourceBundle catalog; // Cached resource bundle field in class:Logger
187 private String catalogName; // name associated with catalog
188 private Locale catalogLocale; // locale associated with catalog
647 * @param msg The string message (or a key in the message catalog)
665 * @param msg The string message (or a key in the message catalog)
686 * @param msg The string message (or a key in the message catalog)
711 * @param msg The string message (or a key in the message catalog)
738 * @param msg The string message (or a key in the message catalog)
761 * @param msg The string message (or a key in the message catalog)
788 * @param msg The string message (or a key in the message catalog)
[all...]

Completed in 93 milliseconds