Package com.sun.msv.grammar
Interface ExpressionVisitorVoid
-
- All Known Subinterfaces:
RELAXExpressionVisitorVoid
- All Known Implementing Classes:
AttributeWildcardComputer
,CombinedChildContentExpCreator
,DblAttrConstraintChecker
,ElementDeclCollector
,ExpressionWalker
,Generator
,IdAbuseChecker
,PatternWriter
,RunAwayExpressionChecker
public interface ExpressionVisitorVoid
ExpressionVisitor that returns void.- Author:
- Kohsuke KAWAGUCHI
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onAnyString()
void
onAttribute(AttributeExp exp)
void
onChoice(ChoiceExp exp)
void
onConcur(ConcurExp exp)
void
onData(DataExp exp)
void
onElement(ElementExp exp)
void
onEpsilon()
void
onInterleave(InterleaveExp exp)
void
onList(ListExp exp)
void
onMixed(MixedExp exp)
void
onNullSet()
void
onOneOrMore(OneOrMoreExp exp)
void
onOther(OtherExp exp)
void
onRef(ReferenceExp exp)
void
onSequence(SequenceExp exp)
void
onValue(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)
-
-