org.apache.ws.jaxme.xs
Class XSParser
java.lang.Object
org.apache.ws.jaxme.xs.XSParser
public class XSParser
extends java.lang.Object
The XML schema parser.
$Id: XSParser.java 232099 2005-04-27 19:42:55Z jochen $static String | XML_SCHEMA_URI - The XML Schema URI:
http://www.w3.org/2001/XMLSchema
|
XSParser() - Creates a new instance of XSParser.
|
XML_SCHEMA_URI
public static final String XML_SCHEMA_URI
The XML Schema URI: http://www.w3.org/2001/XMLSchema
XSParser
public XSParser()
Creates a new instance of XSParser.
addImport
public void addImport(String pNamespace,
String pSchemaLocation)
Adds a schema being imported by the parser. This feature
is useful, if a schema silently assumes the presence of additional
datatypes. For example, a WSDL definition will contain references
to SOAP datatypes without explicit import.
pNamespace
- Matches the "xs:import" nodes "namespace" attribute.
In particular it may be null, in which case the imported schema may
not have a targetNamespace.pSchemaLocation
- Matches the "xs:import" nodes "schemaLocation"
attribute. In particular it may be null.
addImport
public void addImport(String pNamespace,
String pSchemaLocation,
Node pSchema)
Adds a schema being imported by the parser. The schema is
provided as a DOM node. This feature is useful, if a schema
silently assumes the presence of additional datatypes. For
example, a WSDL definition will contain references to SOAP
datatypes without explicit import.
pNamespace
- Matches the "xs:import" nodes "namespace"
attribute. In particular it may be null, in which case the
imported schema may not have a targetNamespace.pSchemaLocation
- The imported schemas system ID, if known,
or null. Knowing the system ID is important only, if you need
to prevent recursive schematas being included more than once.pSchema
- A DOM node with the schema being imported.
getRunningInstance
public static XSParser getRunningInstance()
Provides access to the currently running instance of XSParser
.
getXSContentHandler
public XSContentHandler getXSContentHandler(String pSchemaLocation)
throws SAXException
isValidating
public boolean isValidating()
Returns whether the parser is validating.
parse
public XSSchema parse(InputSource pSource)
throws ParserConfigurationException,
SAXException,
IOException
Parses the given XML schema and returns a logical representation.
parse
public XSSchema parse(Node pNode)
throws SAXException
Parses the given DOM node containing an an XML schema and returns
a logical representation.
pNode
- A node containing a valid XML document. Must be either
an instance of org.w3c.dom.Document
, an instance of
org.w3c.dom.Element
, or an instance of
org.w3c.dom.DocumentFragment
. In the latter case, make
sure, that the fragment contains a single root element.
parseSyntax
public XsESchema parseSyntax(InputSource pSource)
throws ParserConfigurationException,
SAXException,
IOException
Parses the given XML schema. and returns a syntactical
representation.
setData
protected void setData(XSContext pData)
setValidating
public void setValidating(boolean pValidating)
Sets whether the parser is validating.