public class SchemaModelLoader extends ProxyReceiver
| Modifier and Type | Class and Description | 
|---|---|
| class  | SchemaModelLoader.AlternativeTypeHandlerHandle an alternative type for an element declaration | 
| class  | SchemaModelLoader.IdentityConstraintHandlerHandle an identity constraint (key, keyref, unique) | 
| class  | SchemaModelLoader.SelectorHandlerHandle a selector or field within an identity constraint (key, keyref, unique) | 
| class  | SchemaModelLoader.SubstitutionGroupAffiliationHandlerHandle a substitution group affiliation | 
nextReceiverpipelineConfiguration, previousAtomic, systemIdPI_DISABLE_OUTPUT_ESCAPING, PI_ENABLE_OUTPUT_ESCAPING| Constructor and Description | 
|---|
| SchemaModelLoader(Configuration config)Create a schema model loader | 
| Modifier and Type | Method and Description | 
|---|---|
| void | attribute(NodeName nameCode,
         SimpleType typeCode,
         CharSequence value,
         Location locationId,
         int properties)Notify an attribute. | 
| void | characters(CharSequence chars,
          Location locationId,
          int properties)Character data | 
| void | endElement()End of element | 
| PreparedSchema | load(Source source)Load a schema from a serialized component model | 
| int | parseFinalOrBlock(String attrName,
                 String finalValue,
                 int allowed)Parse a list of blocked or final derivations. | 
| void | startContent()Notify the start of the content, that is, the completion of all attributes and namespaces. | 
| void | startElement(NodeName nameCode,
            SchemaType typeCode,
            Location location,
            int properties)Notify the start of an element | 
append, close, comment, endDocument, getNamePool, getUnderlyingReceiver, namespace, open, processingInstruction, setPipelineConfiguration, setSystemId, setUnderlyingReceiver, setUnparsedEntity, startDocument, usesTypeAnnotationsappend, getConfiguration, getPipelineConfiguration, getSystemId, isTrueSequenceReceiverpublic SchemaModelLoader(Configuration config)
config - the Saxon configuration. This must be a schema-aware configuration.
               This SchemaModelLoader creates a PreparedSchema but does not directly load it into the
               Configuration cache; that is the job of the caller.IllegalArgumentException - if the configuration is not schema-awarepublic PreparedSchema load(Source source) throws XPathException
source - the XML source of the serialized component modelXPathException - if an error occurspublic void startElement(NodeName nameCode, SchemaType typeCode, Location location, int properties) throws XPathException
startElement in interface ReceiverstartElement in class ProxyReceivernameCode - integer code identifying the name of the element within the name pool.typeCode - integer code identifying the element's type within the name pool.location - properties - for future use. Should be set to zero.XPathException - if an error occurspublic void startContent()
                  throws XPathException
startContent in interface ReceiverstartContent in class ProxyReceiverXPathException - if an error occurspublic void attribute(NodeName nameCode, SimpleType typeCode, CharSequence value, Location locationId, int properties) throws XPathException
attribute in interface Receiverattribute in class ProxyReceivernameCode - The name of the attribute, as held in the name pooltypeCode - The type of the attribute, as held in the name poollocationId - properties - Bit significant value. The following bits are defined:
                   value - the string value of the attributeXPathException - if an error occurspublic void characters(CharSequence chars, Location locationId, int properties) throws XPathException
characters in interface Receivercharacters in class ProxyReceiverchars - The characterslocationId - provides information such as line number and system ID.properties - Bit significant value. The following bits are defined:
                   XPathException - if an error occurspublic void endElement()
                throws XPathException
endElement in interface ReceiverendElement in class ProxyReceiverXPathException - if an error occurspublic int parseFinalOrBlock(String attrName, String finalValue, int allowed) throws SchemaException
attrName - the attribute name (block or final)finalValue - A list of values to be parsed, as a string,
                   for example "extension restriction"allowed - The permitted values, as a bit-significant integer. For example
                   the value (DERIVE_BY_EXTENSION | DERIVE_BY_RESTRICTION) allows the values
                   "extension" and "restriction" to appear.SchemaException - if a failure occursCopyright (c) 2004-2014 Saxonica Limited. All rights reserved.