FileDocCategorySizeDatePackage
XMLSchema.javaAPI DocApache Xerces 3.0.12475Fri Sep 14 20:33:54 BST 2007org.apache.xerces.jaxp.validation

XMLSchema

public final class XMLSchema extends AbstractXMLSchema

Implementation of Schema for W3C XML Schemas.

author
Michael Glavassevich, IBM
version
$Id: XMLSchema.java 447235 2006-09-18 05:01:44Z mrglavas $

Fields Summary
private final org.apache.xerces.xni.grammars.XMLGrammarPool
fGrammarPool
The grammar pool is immutable
private final boolean
fFullyComposed
Whether to consider this schema to be fully composed
Constructors Summary
public XMLSchema(org.apache.xerces.xni.grammars.XMLGrammarPool grammarPool)
Constructors

        this(grammarPool, true);
    
public XMLSchema(org.apache.xerces.xni.grammars.XMLGrammarPool grammarPool, boolean fullyComposed)

        fGrammarPool = grammarPool;
        fFullyComposed = fullyComposed;
    
Methods Summary
public org.apache.xerces.xni.grammars.XMLGrammarPoolgetGrammarPool()

Returns the grammar pool contained inside the container.

return
the grammar pool contained inside the container

        return fGrammarPool;
    
public booleanisFullyComposed()

Returns whether the schema components contained in this object can be considered to be a fully composed schema and should be used to exclusion of other schema components which may be present elsewhere.

return
whether the schema components contained in this object can be considered to be a fully composed schema

        return fFullyComposed;