Class XSOMParser
- Author:
- Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)
-
Constructor Summary
ConstructorDescriptionDeprecated.Unsafe, use XSOMParser(factory) instead with security features initialized by setting XMLConstants.FEATURE_SECURE_PROCESSING feature.XSOMParser
(XMLParser parser) Creates a new XSOMParser that reads XML Schema from non-standard inputs.XSOMParser
(SAXParserFactory factory) Creates a new XSOMParser that uses the given SAXParserFactory for creating new SAX parsers. -
Method Summary
Modifier and TypeMethodDescriptionGets the set ofSchemaDocument
that represents parsed documents so far.Gets the parser implemented as a ContentHandler.Gets the parsed result.void
Parses a new XML Schema document.void
parse
(InputStream is) Parses a new XML Schema document.void
Parses a new XML Schema document.void
Parses a new XML Schema document.void
Parses a new XML Schema document.void
parse
(InputSource source) Parses a new XML Schema document.void
Sets the annotation parser factory.void
setAnnotationParser
(Class annParser) Sets the annotation parser.void
setEntityResolver
(EntityResolver resolver) Set an entity resolver that is used to resolve things like <xsd:import> and <xsd:include>.void
setErrorHandler
(ErrorHandler errorHandler) Set an error handler that receives all the errors encountered during the parsing.
-
Constructor Details
-
XSOMParser
public XSOMParser()Deprecated.Unsafe, use XSOMParser(factory) instead with security features initialized by setting XMLConstants.FEATURE_SECURE_PROCESSING feature.Creates a new XSOMParser by using a SAX parser from JAXP. -
XSOMParser
Creates a new XSOMParser that uses the given SAXParserFactory for creating new SAX parsers. The caller needs to configure it properly. Don't forget to callsetNamespaceAware(true)
or you'll see some strange errors. -
XSOMParser
Creates a new XSOMParser that reads XML Schema from non-standard inputs. By implementing theXMLParser
interface, XML Schema can be read from something other than XML.- Parameters:
parser
- This parser will be called to parse XML Schema documents.
-
-
Method Details
-
parse
Parses a new XML Schema document.When using this method, XSOM does not know the system ID of this document, therefore, when this stream contains relative references to other schemas, XSOM will fail to resolve them. To specify an system ID with a stream, use
InputSource
- Throws:
SAXException
-
parse
Parses a new XML Schema document.When using this method, XSOM does not know the system ID of this document, therefore, when this reader contains relative references to other schemas, XSOM will fail to resolve them. To specify an system ID with a reader, use
InputSource
- Throws:
SAXException
-
parse
Parses a new XML Schema document.- Throws:
SAXException
IOException
-
parse
Parses a new XML Schema document.- Throws:
SAXException
-
parse
Parses a new XML Schema document.- Throws:
SAXException
-
parse
Parses a new XML Schema document.Note that if the
InputSource
does not have a system ID, XSOM will fail to resolve them.- Throws:
SAXException
-
getParserHandler
Gets the parser implemented as a ContentHandler. One can feed XML Schema as SAX events to this interface to parse a schema. To parse multiple schema files, feed multiple sets of events.If you don't send a complete event sequence from a startDocument event to an endDocument event, the state of XSOMParser can become unstable. This sometimes happen when you encounter an error while generating SAX events. Don't call the getResult method in that case.
This way of reading XML Schema can be useful when XML Schema is not available as a stand-alone XML document. For example, one can feed XML Schema inside a WSDL document.
-
getResult
Gets the parsed result. Don't call this method until you parse all the schemas.- Returns:
- If there was any parse error, this method returns null. To receive error information, specify your error handler through the setErrorHandler method.
- Throws:
SAXException
- This exception will never be thrown unless it is thrown by an error handler.
-
getDocuments
Gets the set ofSchemaDocument
that represents parsed documents so far.- Returns:
- can be empty but never null.
-
getEntityResolver
-
setEntityResolver
Set an entity resolver that is used to resolve things like <xsd:import> and <xsd:include>. -
getErrorHandler
-
setErrorHandler
Set an error handler that receives all the errors encountered during the parsing. -
setAnnotationParser
Sets the annotation parser. Annotation parser can be used to parse application-specific annotations inside a schema.For each annotation, new instance of this class will be created and used to parse <xs:annotation>.
-
setAnnotationParser
Sets the annotation parser factory.The specified factory will be used to create AnnotationParsers.
-
getAnnotationParserFactory
-