Provides a support for in-memory representation of XML Schema.

Example of usage:

        // create a parser via SchemaFactory
        SchemaFactory factory = (SchemaFactory) Context.getInstance(SchemaFactory.CONTEXT_SCHEMA_FACTORY);
        SchemaParser parser = factory.newSchemaParser();

        // parse schema
        parser.parse("http://systinet.com/schema.xsd");
        parser.resolve();

        // get schema
        Schema schema = parser.getSchema();
    

See {@link org.idoox.xml.schema.SchemaParser}, {@link org.idoox.xml.schema.Schema}, {@link org.idoox.xml.schema.SchemaFactory}.

Related Documentation

For XML Schema 2001 Specification, please see: @since WASP 4.0