Package com.sun.msv.grammar
Interface ExpressionVisitorBoolean
-
- All Known Subinterfaces:
RELAXExpressionVisitorBoolean
- All Known Implementing Classes:
ExportedHedgeRuleChecker,ExpressionFinder
public interface ExpressionVisitorBooleanExpressionVisitor that returns boolean.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanonAnyString()booleanonAttribute(AttributeExp exp)booleanonChoice(ChoiceExp exp)booleanonConcur(ConcurExp p)booleanonData(DataExp exp)booleanonElement(ElementExp exp)booleanonEpsilon()booleanonInterleave(InterleaveExp p)booleanonList(ListExp exp)booleanonMixed(MixedExp exp)booleanonNullSet()booleanonOneOrMore(OneOrMoreExp exp)booleanonOther(OtherExp exp)booleanonRef(ReferenceExp exp)booleanonSequence(SequenceExp exp)booleanonValue(ValueExp exp)
-
-
-
Method Detail
-
onAttribute
boolean onAttribute(AttributeExp exp)
-
onChoice
boolean onChoice(ChoiceExp exp)
-
onElement
boolean onElement(ElementExp exp)
-
onOneOrMore
boolean onOneOrMore(OneOrMoreExp exp)
-
onMixed
boolean onMixed(MixedExp exp)
-
onList
boolean onList(ListExp exp)
-
onRef
boolean onRef(ReferenceExp exp)
-
onOther
boolean onOther(OtherExp exp)
-
onEpsilon
boolean onEpsilon()
-
onNullSet
boolean onNullSet()
-
onAnyString
boolean onAnyString()
-
onSequence
boolean onSequence(SequenceExp exp)
-
onData
boolean onData(DataExp exp)
-
onValue
boolean onValue(ValueExp exp)
-
onConcur
boolean onConcur(ConcurExp p)
-
onInterleave
boolean onInterleave(InterleaveExp p)
-
-