com.sun.msv.grammar
Interface ExpressionVisitorVoid

All Known Subinterfaces:
RELAXExpressionVisitorVoid
All Known Implementing Classes:
ExpressionWalker, RunAwayExpressionChecker, CombinedChildContentExpCreator

public interface ExpressionVisitorVoid

ExpressionVisitor that returns void.

Author:
Kohsuke KAWAGUCHI

Method Summary
 void onAnyString()
           
 void onAttribute(AttributeExp exp)
           
 void onChoice(ChoiceExp exp)
           
 void onConcur(ConcurExp exp)
           
 void onElement(ElementExp exp)
           
 void onEpsilon()
           
 void onInterleave(InterleaveExp exp)
           
 void onKey(KeyExp 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 onTypedString(TypedStringExp exp)
           
 

Method Detail

onAttribute

public void onAttribute(AttributeExp exp)

onChoice

public void onChoice(ChoiceExp exp)

onElement

public void onElement(ElementExp exp)

onOneOrMore

public void onOneOrMore(OneOrMoreExp exp)

onMixed

public void onMixed(MixedExp exp)

onList

public void onList(ListExp exp)

onKey

public void onKey(KeyExp exp)

onRef

public void onRef(ReferenceExp exp)

onOther

public void onOther(OtherExp exp)

onEpsilon

public void onEpsilon()

onNullSet

public void onNullSet()

onAnyString

public void onAnyString()

onSequence

public void onSequence(SequenceExp exp)

onTypedString

public void onTypedString(TypedStringExp exp)

onConcur

public void onConcur(ConcurExp exp)

onInterleave

public void onInterleave(InterleaveExp exp)