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

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

Uses of SciElementVisitor in com.togethersoft.openapi.sci
 

Methods in com.togethersoft.openapi.sci with parameters of type SciElementVisitor
ObjectSciElement.accept(SciElementVisitor visitor)
           "Accepts" a visitor, calling up its visitXXX method corresponding to the kind of this element.
 

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

Classes in com.togethersoft.openapi.sci.visitor that implement SciElementVisitor
class SciElementVisitorAdapter
           SciElementVisitorAdapter class extends SciElementVisitor functionality by providing an additional method visitElement.
 

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