Uses of Class
com.togethersoft.openapi.sci.visitor.SciExpressionVisitor

Packages that use SciExpressionVisitor
com.togethersoft.openapi.sci 
com.togethersoft.openapi.sci.visitor 

Uses of SciExpressionVisitor in com.togethersoft.openapi.sci
 

Methods in com.togethersoft.openapi.sci with parameters of type SciExpressionVisitor
ObjectSciExpression.accept(SciExpressionVisitor visitor)
           "Accepts" a visitor, calling up its visitXXX method corresponding to the kind of this expression.
voidSciScope.visitExpressions(SciExpressionVisitor visitor, int expressionKind)
          
voidSciScope.visitExpressions(SciExpressionVisitor visitor)
          
voidSciStatement.visitExpressions(SciExpressionVisitor visitor, int expressionKind)
          
voidSciStatement.visitExpressions(SciExpressionVisitor visitor)
          
 

Uses of SciExpressionVisitor in com.togethersoft.openapi.sci.visitor
 

Classes in com.togethersoft.openapi.sci.visitor that implement SciExpressionVisitor
class SciExpressionVisitorAdapter
           An empty implementation of SciExpressionVisitor interface.
 

Methods in com.togethersoft.openapi.sci.visitor with parameters of type SciExpressionVisitor
static voidSciVisitorUtil.acceptToAll(SciExpressionEnumeration enum, SciExpressionVisitor visitor)
           Makes each SciExpression from the specified enumeration accept the specified visitor.
static ObjectSciVisitorUtil.acceptUntilStop(SciExpressionEnumeration enum, SciExpressionVisitor visitor)
           Makes each SciExpression from the specified enumeration accept the specified visitor until the result of accepting is equal to the static variable STOP.