Uses of Interface
com.sun.msv.verifier.Acceptor

Packages that use Acceptor
com.sun.msv.relaxns.verifier "divide&validate" framework implementation. 
com.sun.msv.verifier Contains abstract model for grammar-based schema and concrete verifier implementation for the abstract schema. 
com.sun.msv.verifier.identity Verifier with XML Schema's identity constraint check. 
com.sun.msv.verifier.psvi Type-assignment engine that can be used by application programs. 
com.sun.msv.verifier.regexp VGM implementation by using regular expression derivation algorithm. 
com.sun.msv.verifier.regexp.xmlschema RegExp VGM implementation that supports special semantics of XML Schema 
 

Uses of Acceptor in com.sun.msv.relaxns.verifier
 

Classes in com.sun.msv.relaxns.verifier that implement Acceptor
 class RulesAcceptor
          Acceptor that is used to validate root node of the island.
 

Methods in com.sun.msv.relaxns.verifier that return Acceptor
 Acceptor RulesAcceptor.createClone()
           
 

Uses of Acceptor in com.sun.msv.verifier
 

Fields in com.sun.msv.verifier declared as Acceptor
protected  Acceptor Verifier.current
           
 

Methods in com.sun.msv.verifier that return Acceptor
 Acceptor DocumentDeclaration.createAcceptor()
          creates a new Acceptor that will validate the document element.
 Acceptor Acceptor.createChildAcceptor(StartTagInfo sti, StringRef refErr)
          creates an Acceptor that will accept the content model of the children of this moment.
 Acceptor Acceptor.createClone()
          clones this acceptor.
 

Methods in com.sun.msv.verifier with parameters of type Acceptor
protected  Datatype[] Verifier.feedAttribute(Acceptor child, String uri, String localName, String qName, String value)
           
protected  void Verifier.onNextAcceptorReady(StartTagInfo sti, Acceptor nextAcceptor)
          this method is called from the startElement method after the tag name is processed and the child acceptor is created.
 boolean Acceptor.stepForward(Acceptor child, StringRef errRef)
          eats a child element
 

Uses of Acceptor in com.sun.msv.verifier.identity
 

Methods in com.sun.msv.verifier.identity with parameters of type Acceptor
protected  Datatype[] IDConstraintChecker.feedAttribute(Acceptor child, String uri, String localName, String qName, String value)
           
protected  void IDConstraintChecker.onNextAcceptorReady(StartTagInfo sti, Acceptor next)
           
 

Uses of Acceptor in com.sun.msv.verifier.psvi
 

Methods in com.sun.msv.verifier.psvi with parameters of type Acceptor
protected  Datatype[] TypeDetector.feedAttribute(Acceptor child, String uri, String localName, String qName, String value)
           
protected  void TypeDetector.onNextAcceptorReady(StartTagInfo sti, Acceptor nextAcceptor)
           
 

Uses of Acceptor in com.sun.msv.verifier.regexp
 

Classes in com.sun.msv.verifier.regexp that implement Acceptor
 class ComplexAcceptor
          Accept that is used when more than one pattern can be applicable to the current context.
 class ComplexAcceptorBaseImpl
          base implementation of ComplexAcceptor.
 class ContentModelAcceptor
          base implementation for SimpleAcceptor and ComplexAcceptor
 class ExpressionAcceptor
          Acceptor implementation.
 class SimpleAcceptor
          Acceptor that will be used when only one ElementExp matches the start tag.
 

Methods in com.sun.msv.verifier.regexp that return Acceptor
 Acceptor REDocumentDeclaration.createAcceptor()
           
protected abstract  Acceptor ExpressionAcceptor.createAcceptor(Expression contentModel, Expression continuation, ElementExp[] primitives, int numPrimitives)
           
protected  Acceptor ContentModelAcceptor.createAcceptor(Expression combined, Expression continuation, ElementExp[] primitives, int numPrimitives)
          creates actual Acceptor object from the computed result.
 Acceptor ExpressionAcceptor.createChildAcceptor(StartTagInfo tag, StringRef errRef)
          creates combined child acceptor and primitive child acceptors (if necessary).
 Acceptor SimpleAcceptor.createClone()
           
 Acceptor ComplexAcceptor.createClone()
           
 

Methods in com.sun.msv.verifier.regexp with parameters of type Acceptor
 boolean ContentModelAcceptor.stepForward(Acceptor child, StringRef errRef)
           
 boolean ComplexAcceptorBaseImpl.stepForward(Acceptor child, StringRef errRef)
           
 

Uses of Acceptor in com.sun.msv.verifier.regexp.xmlschema
 

Classes in com.sun.msv.verifier.regexp.xmlschema that implement Acceptor
 class XSAcceptor
          Acceptor implementation for XSREDocDecl.
 

Methods in com.sun.msv.verifier.regexp.xmlschema that return Acceptor
 Acceptor XSREDocDecl.createAcceptor()
           
protected  Acceptor XSAcceptor.createAcceptor(Expression combined, Expression continuation, ElementExp[] primitives, int numPrimitives)
          creates an XSAcceptor instead of default acceptor implementations.
 Acceptor XSAcceptor.createChildAcceptor(StartTagInfo sti, StringRef refErr)
           
 Acceptor XSAcceptor.createClone()
           
 



MSV