Uses of Class
org.acm.seguin.summary.TraversalVisitor

Packages that use TraversalVisitor
org.acm.seguin.refactor Responsible for storing the software that performs the refactorings. 
org.acm.seguin.refactor.field Contains refactorings that apply to fields. 
org.acm.seguin.refactor.method Responsible for method refactorings. 
org.acm.seguin.refactor.type Contains the type refactorings. 
org.acm.seguin.summary Stores the metadata for the source code. 
org.acm.seguin.summary.query   
 

Uses of TraversalVisitor in org.acm.seguin.refactor
 

Subclasses of TraversalVisitor in org.acm.seguin.refactor
 class EliminatePackageImportVisitor
          Description of the Class
 

Uses of TraversalVisitor in org.acm.seguin.refactor.field
 

Subclasses of TraversalVisitor in org.acm.seguin.refactor.field
 class RemoveFieldFromSubclassVisitor
          Removes the field from all subclasses of a particular class.
 class RenameSystemTraversal
          All items that want to visit a summary tree should implement this interface.
 

Uses of TraversalVisitor in org.acm.seguin.refactor.method
 

Subclasses of TraversalVisitor in org.acm.seguin.refactor.method
 class AddMethodTypeVisitor
          Add all imports associated with a particular method
 class NearMissVisitor
          Determines if there is a problem in performing this refactoring because of a near miss
 class RemoveMethodFromSubclassVisitor
          Removes the method from all subclasses of a particular class.
 

Uses of TraversalVisitor in org.acm.seguin.refactor.type
 

Subclasses of TraversalVisitor in org.acm.seguin.refactor.type
 class MoveClassVisitor
          Scans through the summary objects to create a list of files that reference a particular class.
 class RemoveClassVisitor
          The visitor object for removing a class from the system.
 class RenameClassVisitor
          Renames a class from one name to another.
 class TypeChangeVisitor
          Scans through the summary objects to create a list of files that reference a particular class.
 

Uses of TraversalVisitor in org.acm.seguin.summary
 

Subclasses of TraversalVisitor in org.acm.seguin.summary
 class PrintVisitor
          Print all the summaries
 

Uses of TraversalVisitor in org.acm.seguin.summary.query
 

Subclasses of TraversalVisitor in org.acm.seguin.summary.query
 class ChildClassSearcher
          Searches the set of summaries for all the classes that extend a particular class.