Java 2 Platform
v1.3

Uses of Class
edu.umich.visualsoar.util.Visitor

Packages that use Visitor
edu.umich.visualsoar.util   
 

Uses of Visitor in edu.umich.visualsoar.util
 

Subclasses of Visitor in edu.umich.visualsoar.util
 class AddingVisitor
          This class follows the visitor pattern it is based on Object-Oriented Design patterns in C++, later converted to Java Something has been added to working memory so add the edge to the datamap models and produce the proper change event that can be iterated through later
 class CountingVisitor
          This class follows the visitor pattern it is based on Object-Oriented Design patterns in C++, later converted to Java it counts the number of things that it visits and has an accessor function so the client can recieve the result
 class DoNothingVisitor
          This class follows the visitor pattern it is based on Object-Oriented Design patterns in C++, later converted to Java This class is pretty worthless, but it is used to simplify garbage collection in Soar Working Memory
 class PreOrder
          This class follows the visitor pattern it is based on Object-Oriented Design patterns in C++, later converted to Java Visit the elements in PreOrder
 class PrePostVisitor
          This class follows the visitor pattern it is based on Object-Oriented Design patterns in C++, later converted to Java We might want to visit a traversal in Pre, Post, or In Order a PrePostVistor allows this operation by letting a derived class support that operation
 class RemovingVisitor
          This class follows the visitor pattern it is based on Object-Oriented Design patterns in C++, later converted to Java Something has been removed to working memory so remove the edge to the datamap models and produce the proper change event that can be iterated through later
 


Java 2 Platform
v1.3