Package com.sun.msv.grammar.relax
Interface RELAXExpressionVisitor
-
- All Superinterfaces:
ExpressionVisitor
public interface RELAXExpressionVisitor extends ExpressionVisitor
Visitor interface for RELAX expressions. By implementing this interface, your visitor can distinguish four subclass of ReferenceExp introduced as RELAX stub.Note that onRef method may still be called if you visit AGM created from TREX pattern.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Object
onAttPool(AttPoolClause exp)
java.lang.Object
onElementRules(ElementRules exp)
java.lang.Object
onHedgeRules(HedgeRules exp)
java.lang.Object
onTag(TagClause exp)
-
Methods inherited from interface com.sun.msv.grammar.ExpressionVisitor
onAnyString, onAttribute, onChoice, onConcur, onData, onElement, onEpsilon, onInterleave, onList, onMixed, onNullSet, onOneOrMore, onOther, onRef, onSequence, onValue
-
-
-
-
Method Detail
-
onAttPool
java.lang.Object onAttPool(AttPoolClause exp)
-
onTag
java.lang.Object onTag(TagClause exp)
-
onElementRules
java.lang.Object onElementRules(ElementRules exp)
-
onHedgeRules
java.lang.Object onHedgeRules(HedgeRules exp)
-
-