Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
Java Source Code for Xerces Java 2.11.2
Where Can I see Java Source Code files for Xerces Java 2.11.2?
✍: FYIcenter
Here are Java Source Code files for Xerces Java 2.11.2:
⏎ org/apache/xerces/xs/XSNamespaceItem.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.xerces.xs; /** * The interface represents the namespace schema information information item. * Each namespace schema information information item corresponds to an XML * Schema with a unique namespace name. */ public interface XSNamespaceItem { /** * [schema namespace]: A namespace name or <code>null</code> if absent. */ public String getSchemaNamespace(); /** * [schema components]: a list of top-level components, i.e. element * declarations, attribute declarations, etc. Identity-constraint * definitions are also considered top-level. * * @param objectType The type of the declaration, i.e. * <code>ELEMENT_DECLARATION</code>. Note that * <code>XSTypeDefinition.SIMPLE_TYPE</code> and * <code>XSTypeDefinition.COMPLEX_TYPE</code> can also be used as the * <code>objectType</code> to retrieve only complex types or simple * types, instead of all types. * @return A list of top-level definition of the specified type in * <code>objectType</code> or an empty <code>XSNamedMap</code> if no * such definitions exist. */ public XSNamedMap getComponents(short objectType); /** * [annotations]: a set of annotations if it exists, otherwise an empty * <code>XSObjectList</code>. */ public XSObjectList getAnnotations(); /** * Convenience method. Returns a top-level element declaration. * @param name The name of the declaration. * @return A top-level element declaration or <code>null</code> if such a * declaration does not exist. */ public XSElementDeclaration getElementDeclaration(String name); /** * Convenience method. Returns a top-level attribute declaration. * @param name The name of the declaration. * @return A top-level attribute declaration or <code>null</code> if such * a declaration does not exist. */ public XSAttributeDeclaration getAttributeDeclaration(String name); /** * Convenience method. Returns a top-level simple or complex type * definition. * @param name The name of the definition. * @return An <code>XSTypeDefinition</code> or <code>null</code> if such * a definition does not exist. */ public XSTypeDefinition getTypeDefinition(String name); /** * Convenience method. Returns a top-level attribute group definition. * @param name The name of the definition. * @return A top-level attribute group definition or <code>null</code> if * such a definition does not exist. */ public XSAttributeGroupDefinition getAttributeGroup(String name); /** * Convenience method. Returns a top-level model group definition. * @param name The name of the definition. * @return A top-level model group definition definition or * <code>null</code> if such a definition does not exist. */ public XSModelGroupDefinition getModelGroupDefinition(String name); /** * Convenience method. Returns a top-level notation declaration. * @param name The name of the declaration. * @return A top-level notation declaration or <code>null</code> if such * a declaration does not exist. */ public XSNotationDeclaration getNotationDeclaration(String name); /** * Convenience method. Returns an identity-constraint definition. * @param name The name of the definition. * @return An identity-constraint definition or <code>null</code> if such * a declaration does not exist. */ public XSIDCDefinition getIDCDefinition(String name); /** * [document location] - a list of location URIs for the documents that * contributed to the <code>XSModel</code>. */ public StringList getDocumentLocations(); }
⏎ org/apache/xerces/xs/XSNamespaceItem.java
Or download all of them as a single archive file:
File name: Xerces-J.2.12.2-src.zip File size: 2128351 bytes Release date: 2022-01-21 Download
⇒ Donwload Xerces-J-bin.2.11.0.zip
⇐ What Is in Xerces-J-bin.2.12.2.zip
2016-09-15, 24038👍, 1💬
Popular Posts:
Commons Pool provides an Object-pooling API, with three major aspects: 1. A generic object pool inte...
JasperReports, the world's most popular open source business intelligence and reporting engine and J...
What Is ojdbc7.jar for Oracle 12c R1? ojdbc7.jar for Oracle 12c R1 is the JAR files of ojdbc.jar, JD...
Jackson is "the Java JSON library" or "the best JSON parser for Java". Or simply as "JSON for Java"....
What is the sax\Counter.java provided in the Apache Xerces package? I have Apache Xerces 2.11.0 inst...