Uses of Class
com.sun.msv.reader.State
Packages that use State
Package
Description
reads XML representation of grammar and creates AGM.
interface of Datatype vocabulary reader.
common parts for parseing RELAX Core/Namespace into AGM.
parses RELAX Core into AGM.
shared code between RELAX NG reader and TREX reader.
parses TREX pattern into AGM.
parses RELAX NG into AGM.
parses RELAX NG with DTD compatibility annotation into AGM.
reads TREX grammar with "label
annotation".
parses XML representation of XML Schema into AGM.
parses XML representation of RELAX Namespace.
parses XML representation of RELAXNS-extended RELAX Core.
-
Uses of State in com.sun.msv.reader
Subclasses of State in com.sun.msv.readerModifier and TypeClassDescriptionclass
state that has no children.class
state that creates ChoiceExp.class
Base implementation for those states who read tags representing an expression.class
State that parses Expression which contains other expressions.class
Base implementation for those states who cannot have any children.class
state that ignores the entire subtree.class
state that creates an InterleaveExp.class
state that creates SequenceExp.class
base interface of the most of parsing states.class
State that always returns the same expression.Fields in com.sun.msv.reader declared as StateMethods in com.sun.msv.reader that return StateModifier and TypeMethodDescriptionprotected final State
ChildlessState.createChildState
(StartTagInfo tag) protected State
ExpressionWithChildState.createChildState
(StartTagInfo tag) protected final State
ExpressionWithoutChildState.createChildState
(StartTagInfo tag) protected abstract State
SimpleState.createChildState
(StartTagInfo tag) creates appropriate child state object for this elementabstract State
GrammarReader.createExpressionChildState
(State parent, StartTagInfo tag) this method must be implemented by the derived class to create language-default expresion state.final State
GrammarReader.getCurrentState()
gets current State object.GrammarReader.BackPatch.getOwnerState()
gets State object who has submitted this patch job.final State
State.getParentState()
Methods in com.sun.msv.reader with parameters of type StateModifier and TypeMethodDescriptionabstract State
GrammarReader.createExpressionChildState
(State parent, StartTagInfo tag) this method must be implemented by the derived class to create language-default expresion state.protected final void
State.init
(GrammarReader reader, State parentState, StartTagInfo startTag) protected Expression
GrammarReader.interceptExpression
(State state, Expression exp) intercepts an expression made by ExpressionState before it is passed to the parent state.void
GrammarReader.pushState
(State newState, State parentState, StartTagInfo startTag) pushs the current state into the stack and sets new onefinal InputSource
GrammarReader.resolveLocation
(State sourceState, String uri) obtains InputSource for the specified url.void
GrammarReader.switchSource
(State sourceState, String url, State newState) Switchs InputSource to the specified URL and parses it by the specified state.void
GrammarReader.switchSource
(Source source, State newState) Start reading input from a source defined by a javax.xml.transform source.void
GrammarReader.switchSource
(InputSource source, State newState) start reading input from a source defined by a SAX InputSource.Constructors in com.sun.msv.reader with parameters of type StateModifierConstructorDescriptionprotected
GrammarReader
(GrammarReaderController _controller, SAXParserFactory parserFactory, ExpressionPool pool, State initialState) constructor that should be called from parse method. -
Uses of State in com.sun.msv.reader.datatype
Methods in com.sun.msv.reader.datatype that return StateModifier and TypeMethodDescriptionDataTypeVocabulary.createTopLevelReaderState
(StartTagInfo tag) creates a State object that will parse the element specified by tag parameter. -
Uses of State in com.sun.msv.reader.datatype.xsd
Subclasses of State in com.sun.msv.reader.datatype.xsdModifier and TypeClassDescriptionclass
state that reads facets.class
state that parses <list> element of XSD.class
state that parses <restriction> element.class
State that parses <simpleType> element and its children.(package private) class
Base implementation for those states which produce a type object as its parsing result.(package private) class
State which has at most one TypeState as its child.class
State that parses <union> element and its children.Fields in com.sun.msv.reader.datatype.xsd declared as StateModifier and TypeFieldDescriptionprivate State
XSDatatypeExp.ownerState
State object that creates this late-binding object.Methods in com.sun.msv.reader.datatype.xsd that return StateModifier and TypeMethodDescriptionprotected State
ListState.createChildState
(StartTagInfo tag) protected State
RestrictionState.createChildState
(StartTagInfo tag) protected State
SimpleTypeState.createChildState
(StartTagInfo tag) protected State
UnionState.createChildState
(StartTagInfo tag) XSDVocabulary.createTopLevelReaderState
(StartTagInfo tag) XSDatatypeExp.getOwnerState()
-
Uses of State in com.sun.msv.reader.relax
Subclasses of State in com.sun.msv.reader.relaxModifier and TypeClassDescriptionclass
parses <ref label="..." /> element.class
parses <hedgeRef label="..." /> element.class
Base implementation for HedgeRuleState and TopLevelState.(package private) class
base implementation of HedgeRefState and ElementRefState.Methods in com.sun.msv.reader.relax that return StateModifier and TypeMethodDescriptionprotected State
RELAXReader.StateFactory.choice
(State parent, StartTagInfo tag) protected State
HedgeRuleBaseState.createChildState
(StartTagInfo tag) RELAXReader.createExpressionChildState
(State parent, StartTagInfo tag) protected State
RELAXReader.StateFactory.empty
(State parent, StartTagInfo tag) protected State
RELAXReader.StateFactory.hedgeRef
(State parent, StartTagInfo tag) protected State
RELAXReader.StateFactory.none
(State parent, StartTagInfo tag) protected State
RELAXReader.StateFactory.refLabel
(State parent, StartTagInfo tag) protected State
RELAXReader.StateFactory.sequence
(State parent, StartTagInfo tag) Methods in com.sun.msv.reader.relax with parameters of type StateModifier and TypeMethodDescriptionprotected boolean
RELAXReader.canHaveOccurs
(State state) returns true if the given state can have "occurs" attribute.protected State
RELAXReader.StateFactory.choice
(State parent, StartTagInfo tag) RELAXReader.createExpressionChildState
(State parent, StartTagInfo tag) RELAXReader.createFacetState
(State parent, StartTagInfo tag) protected State
RELAXReader.StateFactory.empty
(State parent, StartTagInfo tag) protected FacetState
RELAXReader.StateFactory.facets
(State parent, StartTagInfo tag) protected State
RELAXReader.StateFactory.hedgeRef
(State parent, StartTagInfo tag) protected Expression
RELAXReader.interceptExpression
(State state, Expression exp) protected State
RELAXReader.StateFactory.none
(State parent, StartTagInfo tag) protected State
RELAXReader.StateFactory.refLabel
(State parent, StartTagInfo tag) protected State
RELAXReader.StateFactory.sequence
(State parent, StartTagInfo tag) Constructors in com.sun.msv.reader.relax with parameters of type StateModifierConstructorDescriptionRELAXReader
(GrammarReaderController controller, SAXParserFactory parserFactory, RELAXReader.StateFactory stateFactory, ExpressionPool pool, State initialState) -
Uses of State in com.sun.msv.reader.relax.core
Subclasses of State in com.sun.msv.reader.relax.coreModifier and TypeClassDescriptionclass
parses <ref role="..." />.class
parses <attPool> element.class
parses <attribute> element.(package private) class
common part of <tag> and <attPool>.class
parses <div> element under <module> element.(package private) class
Base implementation for ElementRuleWithHedgeState and ElementRuleWithTypeState.class
parses <elementRule> without 'type' attribute.class
parses <elementRule> with 'type' attribute.class
parses <hedgeRule> element this class is used as the base class of TopLevelStateclass
parses <include> element of RELAX Core.class
parses <element> element.class
parses <tag> element inlined in <elementRule>class
parses <interface> element and <div> in interface.class
parses <mixed> element.class
Used to parse module.class
parses <module> element.(package private) class
invokes State object that parses the document element.(package private) class
invokes State object that parses the document element.class
parses <tag> element.Methods in com.sun.msv.reader.relax.core that return StateModifier and TypeMethodDescriptionprotected State
RELAXCoreReader.StateFactory.attPool
(State parent, StartTagInfo tag) protected State
RELAXCoreReader.StateFactory.attribute
(State parent, StartTagInfo tag) protected State
AttributeState.createChildState
(StartTagInfo tag) protected State
ClauseState.createChildState
(StartTagInfo tag) protected State
DivInModuleState.createChildState
(StartTagInfo tag) protected State
ElementRuleBaseState.createChildState
(StartTagInfo tag) protected State
ElementRuleWithHedgeState.createChildState
(StartTagInfo tag) protected State
ElementRuleWithTypeState.createChildState
(StartTagInfo tag) protected State
InlineElementState.createChildState
(StartTagInfo tag) protected State
InterfaceState.createChildState
(StartTagInfo tag) protected State
RootModuleMergeState.createChildState
(StartTagInfo tag) protected State
RootModuleState.createChildState
(StartTagInfo tag) RELAXCoreReader.createExpressionChildState
(State parent, StartTagInfo tag) protected State
RELAXCoreReader.StateFactory.divInModule
(State parent, StartTagInfo tag) protected State
RELAXCoreReader.StateFactory.element
(State parent, StartTagInfo tag) protected State
RELAXCoreReader.StateFactory.elementRule
(State parent, StartTagInfo tag) protected State
RELAXCoreReader.StateFactory.hedgeRule
(State parent, StartTagInfo tag) protected State
RELAXCoreReader.StateFactory.include
(State parent, StartTagInfo tag) protected State
RELAXCoreReader.StateFactory.interface_
(State parent, StartTagInfo tag) protected State
RELAXCoreReader.StateFactory.mixed
(State parent, StartTagInfo tag) protected State
RELAXCoreReader.StateFactory.refRole
(State parent, StartTagInfo tag) protected State
RELAXCoreReader.StateFactory.simpleType
(State parent, StartTagInfo tag) protected State
RELAXCoreReader.StateFactory.tag
(State parent, StartTagInfo tag) protected State
RELAXCoreReader.StateFactory.tagInline
(State parent, StartTagInfo tag) Methods in com.sun.msv.reader.relax.core with parameters of type StateModifier and TypeMethodDescriptionprotected State
RELAXCoreReader.StateFactory.attPool
(State parent, StartTagInfo tag) protected State
RELAXCoreReader.StateFactory.attribute
(State parent, StartTagInfo tag) RELAXCoreReader.createExpressionChildState
(State parent, StartTagInfo tag) protected State
RELAXCoreReader.StateFactory.divInModule
(State parent, StartTagInfo tag) protected State
RELAXCoreReader.StateFactory.element
(State parent, StartTagInfo tag) protected State
RELAXCoreReader.StateFactory.elementRule
(State parent, StartTagInfo tag) protected State
RELAXCoreReader.StateFactory.hedgeRule
(State parent, StartTagInfo tag) protected State
RELAXCoreReader.StateFactory.include
(State parent, StartTagInfo tag) protected State
RELAXCoreReader.StateFactory.interface_
(State parent, StartTagInfo tag) protected State
RELAXCoreReader.StateFactory.mixed
(State parent, StartTagInfo tag) protected State
RELAXCoreReader.StateFactory.refRole
(State parent, StartTagInfo tag) protected State
RELAXCoreReader.StateFactory.simpleType
(State parent, StartTagInfo tag) protected State
RELAXCoreReader.StateFactory.tag
(State parent, StartTagInfo tag) protected State
RELAXCoreReader.StateFactory.tagInline
(State parent, StartTagInfo tag) -
Uses of State in com.sun.msv.reader.trex
Subclasses of State in com.sun.msv.reader.trexModifier and TypeClassDescriptionclass
parses <attribute> pattern.class
parses <define> declaration.class
Used to parse merged grammars.class
parses <element> pattern.class
parses <grammar> element.class
<include> element as an immediate child of <grammar> element.class
<include> element in the pattern.class
parses <mixed> pattern.class
Base implementation for ElementState and AttributeState This class collects one name class and patternsclass
parses <anyName> name class.class
parses <choice> name class.class
parses <difference> name class.class
parses <name> name class.class
parses <not> name class.class
parses <nsName> name class.class
Base implementation for NameClass primitivesclass
parses name class that has child name classesclass
Base implementation for those states who cannot have any child name class.class
parses <oneOrMore> pattern.class
parses <optional> pattern.class
parses <ref> pattern.class
parses the root state of a grammar included as a pattern.class
parses root state of a merged grammar.class
invokes State object that parses the document element.class
parses <start> element.class
parses <zeroOrMore> pattern.Methods in com.sun.msv.reader.trex that return StateModifier and TypeMethodDescriptionTREXBaseReader.StateFactory.attribute
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.choice
(State parent, StartTagInfo tag) protected State
DefineState.createChildState
(StartTagInfo tag) protected State
DivInGrammarState.createChildState
(StartTagInfo tag) protected State
IncludeMergeState.createChildState
(StartTagInfo tag) protected State
NameClassAndExpressionState.createChildState
(StartTagInfo tag) protected State
NameClassWithChildState.createChildState
(StartTagInfo tag) protected final State
NameClassWithoutChildState.createChildState
(StartTagInfo tag) protected State
RootIncludedPatternState.createChildState
(StartTagInfo tag) protected State
RootMergedGrammarState.createChildState
(StartTagInfo tag) protected State
RootState.createChildState
(StartTagInfo tag) TREXBaseReader.createExpressionChildState
(State parent, StartTagInfo tag) protected State
TREXBaseReader.createNameClassChildState
(State parent, StartTagInfo tag) abstract State
TREXBaseReader.StateFactory.define
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.divInGrammar
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.element
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.empty
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.grammar
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.group
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.includedGrammar()
TREXBaseReader.StateFactory.includeGrammar
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.interleave
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.mixed
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.notAllowed
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.nsAnyName
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.nsChoice
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.nsDifference
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.nsName
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.nsNot
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.nsNsName
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.oneOrMore
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.optional
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.ref
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.start
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.zeroOrMore
(State parent, StartTagInfo tag) Methods in com.sun.msv.reader.trex with parameters of type StateModifier and TypeMethodDescriptionTREXBaseReader.StateFactory.attribute
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.choice
(State parent, StartTagInfo tag) TREXBaseReader.createExpressionChildState
(State parent, StartTagInfo tag) protected State
TREXBaseReader.createNameClassChildState
(State parent, StartTagInfo tag) abstract State
TREXBaseReader.StateFactory.define
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.divInGrammar
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.element
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.empty
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.grammar
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.group
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.includeGrammar
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.interleave
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.mixed
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.notAllowed
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.nsAnyName
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.nsChoice
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.nsDifference
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.nsName
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.nsNot
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.nsNsName
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.oneOrMore
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.optional
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.ref
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.start
(State parent, StartTagInfo tag) TREXBaseReader.StateFactory.zeroOrMore
(State parent, StartTagInfo tag) Constructors in com.sun.msv.reader.trex with parameters of type StateModifierConstructorDescriptionTREXBaseReader
(GrammarReaderController controller, SAXParserFactory parserFactory, ExpressionPool pool, TREXBaseReader.StateFactory stateFactory, State rootState) full constructor -
Uses of State in com.sun.msv.reader.trex.classic
Subclasses of State in com.sun.msv.reader.trex.classicModifier and TypeClassDescriptionclass
parses <concur> pattern.class
parses <data> pattern.class
parses <define> declaration.class
parses <string> pattern.Methods in com.sun.msv.reader.trex.classic that return StateModifier and TypeMethodDescriptionTREXGrammarReader.StateFactory.anyString
(State parent, StartTagInfo tag) TREXGrammarReader.StateFactory.concur
(State parent, StartTagInfo tag) TREXGrammarReader.createExpressionChildState
(State parent, StartTagInfo tag) TREXGrammarReader.UndefinedDataTypeVocabulary.createTopLevelReaderState
(StartTagInfo tag) TREXGrammarReader.StateFactory.data
(State parent, StartTagInfo tag) TREXGrammarReader.StateFactory.define
(State parent, StartTagInfo tag) TREXGrammarReader.StateFactory.includePattern
(State parent, StartTagInfo tag) TREXGrammarReader.StateFactory.string
(State parent, StartTagInfo tag) Methods in com.sun.msv.reader.trex.classic with parameters of type StateModifier and TypeMethodDescriptionTREXGrammarReader.StateFactory.anyString
(State parent, StartTagInfo tag) TREXGrammarReader.StateFactory.concur
(State parent, StartTagInfo tag) TREXGrammarReader.createExpressionChildState
(State parent, StartTagInfo tag) TREXGrammarReader.StateFactory.data
(State parent, StartTagInfo tag) TREXGrammarReader.StateFactory.define
(State parent, StartTagInfo tag) TREXGrammarReader.StateFactory.includePattern
(State parent, StartTagInfo tag) TREXGrammarReader.StateFactory.string
(State parent, StartTagInfo tag) -
Uses of State in com.sun.msv.reader.trex.ng
Subclasses of State in com.sun.msv.reader.trex.ngModifier and TypeClassDescriptionclass
parses <attribute> pattern.class
parses <param> element inside <data> element.class
parses <data> pattern.class
parses <define> declaration.class
parses <element> pattern.class
parses <grammar> element.class
parses <include> element as a child of <grammar> element.class
state that parses <list> pattern of RELAX NG.class
parses <anyName> name class.static class
Parsing state for <anyName>static class
Parsing state for <nsName>class
parses <ref> pattern.class
parses <start> declaration.class
parses <value> pattern.Methods in com.sun.msv.reader.trex.ng that return StateModifier and TypeMethodDescriptionRELAXNGReader.StateFactory.attribute
(State parent, StartTagInfo tag) protected State
DataState.createChildState
(StartTagInfo tag) protected State
IncludeMergeState.createChildState
(StartTagInfo tag) protected State
NGNameState.createChildState
(StartTagInfo tag) RELAXNGReader.createExpressionChildState
(State parent, StartTagInfo tag) protected State
RELAXNGReader.createNameClassChildState
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.data
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.dataExcept
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.dataParam
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.define
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.divInGrammar
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.element
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.externalRef
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.grammar
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.includeGrammar
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.list
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.nsAnyName
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.nsExcept
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.nsNsName
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.parentRef
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.redefine
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.redefineStart
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.ref
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.start
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.text
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.value
(State parent, StartTagInfo tag) Methods in com.sun.msv.reader.trex.ng with parameters of type StateModifier and TypeMethodDescriptionRELAXNGReader.StateFactory.attribute
(State parent, StartTagInfo tag) RELAXNGReader.createExpressionChildState
(State parent, StartTagInfo tag) protected State
RELAXNGReader.createNameClassChildState
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.data
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.dataExcept
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.dataParam
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.define
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.divInGrammar
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.element
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.externalRef
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.grammar
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.includeGrammar
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.list
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.nsAnyName
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.nsExcept
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.nsNsName
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.parentRef
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.redefine
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.redefineStart
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.ref
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.start
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.text
(State parent, StartTagInfo tag) RELAXNGReader.StateFactory.value
(State parent, StartTagInfo tag) -
Uses of State in com.sun.msv.reader.trex.ng.comp
Subclasses of State in com.sun.msv.reader.trex.ng.compMethods in com.sun.msv.reader.trex.ng.comp that return StateModifier and TypeMethodDescriptionRELAXNGCompReader.StateFactory.attribute
(State parent, StartTagInfo tag) Methods in com.sun.msv.reader.trex.ng.comp with parameters of type StateModifier and TypeMethodDescriptionRELAXNGCompReader.StateFactory.attribute
(State parent, StartTagInfo tag) -
Uses of State in com.sun.msv.reader.trex.typed
Subclasses of State in com.sun.msv.reader.trex.typedModifier and TypeClassDescriptionclass
reads <element> element with 'label' annotation.Methods in com.sun.msv.reader.trex.typed that return StateModifier and TypeMethodDescriptionTypedTREXGrammarInterceptor.element
(State parent, StartTagInfo tag) Methods in com.sun.msv.reader.trex.typed with parameters of type StateModifier and TypeMethodDescriptionTypedTREXGrammarInterceptor.element
(State parent, StartTagInfo tag) -
Uses of State in com.sun.msv.reader.xmlschema
Subclasses of State in com.sun.msv.reader.xmlschemaModifier and TypeClassDescriptionclass
used to parse <anyAttribute > element.class
used to parse <any > element.class
base implementation of AnyAttributeState and AnyElementState.class
parses <attributeGroup /> element.class
used to parse <attribute > element.class
used to parse restriction/extension element as a child of complexContent element.class
parses <complexContent> element.class
used to parse <complexType> element.class
used to parse <element > element without ref attribute.class
used to parse <element > element with ref attribute.class
State that parses global declarations.class
used to parse <group> element.class
used to parse <unique>,<key>, and <keyref> element.class
used to parse <import> element.class
used to parse <include> element.class
state that parses redefinable declaration.class
used to parse <redefine> element.class
used to parse root of schema document.class
RootIncludedSchemaState + final wrap up.class
used to parse <schema> element of included schema.class
used to parse <schema> element.class
used to parse extension element as a child of <simpleContent> element.class
used to parse restriction/extension element as a child of <simpleContent> element.class
used to parse <simpleContent> element.Fields in com.sun.msv.reader.xmlschema declared as StateMethods in com.sun.msv.reader.xmlschema that return StateModifier and TypeMethodDescriptionXMLSchemaReader.StateFactory.all
(State parent, StartTagInfo tag) XMLSchemaReader.StateFactory.any
(State parent, StartTagInfo tag) XMLSchemaReader.StateFactory.anyAttribute
(State parent, StartTagInfo tag) XMLSchemaReader.StateFactory.attribute
(State parent, StartTagInfo tag) XMLSchemaReader.StateFactory.attributeGroup
(State parent, StartTagInfo tag) XMLSchemaReader.StateFactory.choice
(State parent, StartTagInfo tag) XMLSchemaReader.StateFactory.complexContent
(State parent, StartTagInfo tag, ComplexTypeExp decl) XMLSchemaReader.StateFactory.complexExt
(State parent, StartTagInfo tag, ComplexTypeExp decl) XMLSchemaReader.StateFactory.complexRst
(State parent, StartTagInfo tag, ComplexTypeExp decl) XMLSchemaReader.StateFactory.complexTypeDecl
(State parent, StartTagInfo tag) XMLSchemaReader.createAttributeState
(State parent, StartTagInfo tag) creates a state object that parses "attribute","attributeGroup ref", and "anyAttribute".protected State
AttributeGroupState.createChildState
(StartTagInfo tag) protected State
AttributeState.createChildState
(StartTagInfo tag) protected State
ComplexContentBodyState.createChildState
(StartTagInfo tag) protected State
ComplexContentState.createChildState
(StartTagInfo tag) protected State
ComplexTypeDeclState.createChildState
(StartTagInfo tag) protected State
ElementDeclState.createChildState
(StartTagInfo tag) protected State
GlobalDeclState.createChildState
(StartTagInfo tag) protected State
GroupState.createChildState
(StartTagInfo tag) protected State
IdentityConstraintState.createChildState
(StartTagInfo tag) protected State
RedefineState.createChildState
(StartTagInfo tag) protected State
RootIncludedSchemaState.createChildState
(StartTagInfo tag) protected State
SchemaIncludedState.createChildState
(StartTagInfo tag) protected State
SimpleContentExtensionState.createChildState
(StartTagInfo tag) protected State
SimpleContentRestrictionState.createChildState
(StartTagInfo tag) protected State
SimpleContentState.createChildState
(StartTagInfo tag) XMLSchemaReader.createExpressionChildState
(State parent, StartTagInfo tag) XMLSchemaReader.createFacetState
(State parent, StartTagInfo tag) XMLSchemaReader.createModelGroupState
(State parent, StartTagInfo tag) creates a state object that parses "all"/"group ref"/"choice" and "sequence".XMLSchemaReader.StateFactory.elementDecl
(State parent, StartTagInfo tag) XMLSchemaReader.StateFactory.elementRef
(State parent, StartTagInfo tag) XMLSchemaReader.StateFactory.facets
(State parent, StartTagInfo tag) XMLSchemaReader.StateFactory.group
(State parent, StartTagInfo tag) XMLSchemaReader.StateFactory.import_
(State parent, StartTagInfo tag) XMLSchemaReader.StateFactory.include
(State parent, StartTagInfo tag) XMLSchemaReader.StateFactory.key
(State parent, StartTagInfo tag) XMLSchemaReader.StateFactory.keyref
(State parent, StartTagInfo tag) XMLSchemaReader.StateFactory.notation
(State parent, StartTagInfo tag) XMLSchemaReader.StateFactory.redefine
(State parent, StartTagInfo tag) XMLSchemaReader.StateFactory.schemaHead
(String expectedNamespace) XMLSchemaReader.StateFactory.schemaIncluded
(State parent, String expectedNamespace) XMLSchemaReader.StateFactory.sequence
(State parent, StartTagInfo tag) XMLSchemaReader.StateFactory.simpleContent
(State parent, StartTagInfo tag, ComplexTypeExp decl) XMLSchemaReader.StateFactory.simpleExt
(State parent, StartTagInfo tag, ComplexTypeExp decl) XMLSchemaReader.StateFactory.simpleRst
(State parent, StartTagInfo tag, ComplexTypeExp decl) XMLSchemaReader.StateFactory.simpleType
(State parent, StartTagInfo tag) XMLSchemaReader.StateFactory.unique
(State parent, StartTagInfo tag) Methods in com.sun.msv.reader.xmlschema with parameters of type StateModifier and TypeMethodDescriptionXMLSchemaReader.StateFactory.all
(State parent, StartTagInfo tag) XMLSchemaReader.StateFactory.any
(State parent, StartTagInfo tag) XMLSchemaReader.StateFactory.anyAttribute
(State parent, StartTagInfo tag) XMLSchemaReader.StateFactory.attribute
(State parent, StartTagInfo tag) XMLSchemaReader.StateFactory.attributeGroup
(State parent, StartTagInfo tag) XMLSchemaReader.StateFactory.choice
(State parent, StartTagInfo tag) XMLSchemaReader.StateFactory.complexContent
(State parent, StartTagInfo tag, ComplexTypeExp decl) XMLSchemaReader.StateFactory.complexExt
(State parent, StartTagInfo tag, ComplexTypeExp decl) XMLSchemaReader.StateFactory.complexRst
(State parent, StartTagInfo tag, ComplexTypeExp decl) XMLSchemaReader.StateFactory.complexTypeDecl
(State parent, StartTagInfo tag) XMLSchemaReader.createAttributeState
(State parent, StartTagInfo tag) creates a state object that parses "attribute","attributeGroup ref", and "anyAttribute".XMLSchemaReader.createExpressionChildState
(State parent, StartTagInfo tag) XMLSchemaReader.createFacetState
(State parent, StartTagInfo tag) XMLSchemaReader.createModelGroupState
(State parent, StartTagInfo tag) creates a state object that parses "all"/"group ref"/"choice" and "sequence".XMLSchemaReader.StateFactory.elementDecl
(State parent, StartTagInfo tag) XMLSchemaReader.StateFactory.elementRef
(State parent, StartTagInfo tag) XMLSchemaReader.StateFactory.facets
(State parent, StartTagInfo tag) XMLSchemaReader.StateFactory.group
(State parent, StartTagInfo tag) XMLSchemaReader.StateFactory.import_
(State parent, StartTagInfo tag) XMLSchemaReader.StateFactory.include
(State parent, StartTagInfo tag) protected Expression
XMLSchemaReader.interceptExpression
(State state, Expression exp) XMLSchemaReader.StateFactory.key
(State parent, StartTagInfo tag) XMLSchemaReader.StateFactory.keyref
(State parent, StartTagInfo tag) XMLSchemaReader.StateFactory.notation
(State parent, StartTagInfo tag) XMLSchemaReader.StateFactory.redefine
(State parent, StartTagInfo tag) XMLSchemaReader.StateFactory.schemaIncluded
(State parent, String expectedNamespace) XMLSchemaReader.StateFactory.sequence
(State parent, StartTagInfo tag) XMLSchemaReader.StateFactory.simpleContent
(State parent, StartTagInfo tag, ComplexTypeExp decl) XMLSchemaReader.StateFactory.simpleExt
(State parent, StartTagInfo tag, ComplexTypeExp decl) XMLSchemaReader.StateFactory.simpleRst
(State parent, StartTagInfo tag, ComplexTypeExp decl) XMLSchemaReader.StateFactory.simpleType
(State parent, StartTagInfo tag) protected void
XMLSchemaReader.switchSource
(State sourceState, State newRootState) XMLSchemaReader.StateFactory.unique
(State parent, StartTagInfo tag) Constructors in com.sun.msv.reader.xmlschema with parameters of type State -
Uses of State in com.sun.msv.relaxns.reader
Subclasses of State in com.sun.msv.relaxns.readerModifier and TypeClassDescriptionclass
parses <grammar> element.class
parses <include> element of RELAX Namespace.class
parses <namespace> element of RELAX Namespace.(package private) class
invokes State object that parses the document element.class
invokes State object that parses the document element.class
parses <topLevel> element.Methods in com.sun.msv.relaxns.reader that return StateModifier and TypeMethodDescriptionprotected State
GrammarState.createChildState
(StartTagInfo tag) protected State
RootGrammarMergeState.createChildState
(StartTagInfo tag) protected State
RootGrammarState.createChildState
(StartTagInfo tag) protected State
TopLevelState.createChildState
(StartTagInfo tag) -
Uses of State in com.sun.msv.relaxns.reader.relax
Subclasses of State in com.sun.msv.relaxns.reader.relaxModifier and TypeClassDescriptionclass
parses <anyOtherElement> state.(package private) class
parses <interface> element and <div> in interface.Methods in com.sun.msv.relaxns.reader.relax that return StateModifier and TypeMethodDescriptionprotected State
InterfaceStateEx.createChildState
(StartTagInfo tag) RELAXCoreIslandSchemaReader.createExpressionChildState
(State parent, StartTagInfo tag) RELAXCoreIslandSchemaReader.StateFactory.interface_
(State parent, StartTagInfo tag) Methods in com.sun.msv.relaxns.reader.relax with parameters of type StateModifier and TypeMethodDescriptionRELAXCoreIslandSchemaReader.createExpressionChildState
(State parent, StartTagInfo tag) RELAXCoreIslandSchemaReader.StateFactory.interface_
(State parent, StartTagInfo tag)