Package com.sun.msv.grammar
Interface ExpressionVisitorVoid
-
- All Known Subinterfaces:
RELAXExpressionVisitorVoid
- All Known Implementing Classes:
AttributeWildcardComputer,CombinedChildContentExpCreator,DblAttrConstraintChecker,ElementDeclCollector,ExpressionWalker,Generator,IdAbuseChecker,PatternWriter,RELAXNGWriter.SmartPatternWriter,RestrictionChecker.DefaultChecker,RestrictionChecker.ListChecker,RunAwayExpressionChecker
public interface ExpressionVisitorVoidExpressionVisitor that returns void.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonAnyString()voidonAttribute(AttributeExp exp)voidonChoice(ChoiceExp exp)voidonConcur(ConcurExp exp)voidonData(DataExp exp)voidonElement(ElementExp exp)voidonEpsilon()voidonInterleave(InterleaveExp exp)voidonList(ListExp exp)voidonMixed(MixedExp exp)voidonNullSet()voidonOneOrMore(OneOrMoreExp exp)voidonOther(OtherExp exp)voidonRef(ReferenceExp exp)voidonSequence(SequenceExp exp)voidonValue(ValueExp exp)
-
-
-
Method Detail
-
onAttribute
void onAttribute(AttributeExp exp)
-
onChoice
void onChoice(ChoiceExp exp)
-
onElement
void onElement(ElementExp exp)
-
onOneOrMore
void onOneOrMore(OneOrMoreExp exp)
-
onMixed
void onMixed(MixedExp exp)
-
onList
void onList(ListExp exp)
-
onRef
void onRef(ReferenceExp exp)
-
onOther
void onOther(OtherExp exp)
-
onEpsilon
void onEpsilon()
-
onNullSet
void onNullSet()
-
onAnyString
void onAnyString()
-
onSequence
void onSequence(SequenceExp exp)
-
onData
void onData(DataExp exp)
-
onValue
void onValue(ValueExp exp)
-
onConcur
void onConcur(ConcurExp exp)
-
onInterleave
void onInterleave(InterleaveExp exp)
-
-