FileDocCategorySizeDatePackage
XercesSchema.javaAPI DocJava SE 5 API3897Fri Aug 26 14:55:54 BST 2005com.sun.org.apache.xerces.internal.jaxp.validation

XercesSchema

public abstract class XercesSchema extends Schema
{@link javax.xml.validation.Schema} interface with an enhancement.

{@link javax.xml.validation.Schema} implementations from Xerces will derive from this class.

author
Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)

Fields Summary
Constructors Summary
Methods Summary
private com.sun.org.apache.xerces.internal.jaxp.validation.ValidatorHandlerImpl_newValidatorHandler()

        return new ValidatorHandlerImpl(newXNIValidator());
    
public final javax.xml.validation.ValidatornewValidator()

        return new ValidatorImpl(_newValidatorHandler());
    
public final javax.xml.validation.ValidatorHandlernewValidatorHandler()

        return _newValidatorHandler();
    
public abstract InsulatedValidatorComponentnewXNIValidator()
Similar to {@link javax.xml.validation.Schema#newValidator()} but this method creates a new validator that works directly with the XNI events.

This enables optimization when a parser and a validator is both from Xerces.