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

Packages that use FieldSummary
org.acm.seguin.metrics Contains code to gather metrics about the source code. 
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   
org.acm.seguin.uml Responsible for drawing the UML class diagrams. 
org.acm.seguin.uml.refactor Contains the user interface compontents, controllers and dialog boxes, that allow a programmer to specify parameters for the refactorings. 
 

Uses of FieldSummary in org.acm.seguin.metrics
 

Methods in org.acm.seguin.metrics with parameters of type FieldSummary
 java.lang.Object GatherData.visit(FieldSummary node, java.lang.Object data)
          Visit a field summary.
 

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

Methods in org.acm.seguin.refactor.field with parameters of type FieldSummary
 java.lang.Object RenameSystemTraversal.visit(FieldSummary node, java.lang.Object data)
          Visit a field summary.
 java.lang.Object RemoveFieldFromSubclassVisitor.visit(FieldSummary fieldSummary, java.lang.Object data)
          Visits the field summary and determines if it should be removed.
 

Constructors in org.acm.seguin.refactor.field with parameters of type FieldSummary
RemoveFieldFromSubclassVisitor(TypeSummary type, FieldSummary init, TypeSummary notThisOne, ComplexTransform transform)
          Constructor for the RemoveFieldFromSubclassVisitor object
RenameFieldTransform(FieldSummary oldField, java.lang.String newName)
          Constructor for the RemoveFieldTransform object
 

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

Methods in org.acm.seguin.refactor.method with parameters of type FieldSummary
 java.lang.Object RenameSystemTraversal.visit(FieldSummary node, java.lang.Object data)
          Visit a field summary.
 

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

Methods in org.acm.seguin.refactor.type with parameters of type FieldSummary
 java.lang.Object TypeChangeVisitor.visit(FieldSummary node, java.lang.Object data)
          Visit a field summary.
 

Uses of FieldSummary in org.acm.seguin.summary
 

Methods in org.acm.seguin.summary that return FieldSummary
 FieldSummary TypeSummary.getField(java.lang.String name)
          Gets a field by a name
 

Methods in org.acm.seguin.summary with parameters of type FieldSummary
protected  void TypeSummary.add(FieldSummary fieldSummary)
          Add a field summary
 java.lang.Object SummaryVisitor.visit(FieldSummary node, java.lang.Object data)
          Visit a field summary.
 java.lang.Object PrintVisitor.visit(FieldSummary node, java.lang.Object data)
          Visit a field summary.
 java.lang.Object TraversalVisitor.visit(FieldSummary node, java.lang.Object data)
          Visit a field summary.
 

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

Methods in org.acm.seguin.summary.query that return FieldSummary
static FieldSummary FieldQuery.find(TypeSummary typeSummary, java.lang.String name)
          Finds an associated field
static FieldSummary FieldQuery.query(TypeSummary typeSummary, java.lang.String name, int protection)
          Finds the field associated with a type
static FieldSummary FieldQuery.queryAncestors(TypeSummary typeSummary, java.lang.String name, int protection)
          Finds the field associated with a type in the ancestors of that type
 

Uses of FieldSummary in org.acm.seguin.uml
 

Methods in org.acm.seguin.uml that return FieldSummary
 FieldSummary UMLField.getSummary()
          Return the summary
 

Constructors in org.acm.seguin.uml with parameters of type FieldSummary
UMLField(UMLPackage initCurrent, UMLType parent, FieldSummary field, DragPanelAdapter adapter)
          Create a new instance of a UMLLine
 

Uses of FieldSummary in org.acm.seguin.uml.refactor
 

Constructors in org.acm.seguin.uml.refactor with parameters of type FieldSummary
PushDownFieldListener(UMLPackage initPackage, TypeSummary initType, FieldSummary field, javax.swing.JPopupMenu initMenu, javax.swing.JMenuItem initItem)
          Constructor for the AddChildClassListener object
PushUpFieldListener(UMLPackage initPackage, TypeSummary initType, FieldSummary fieldSummary, javax.swing.JPopupMenu initMenu, javax.swing.JMenuItem initItem)
          Constructor for the PushUpFieldListener object
RenameFieldDialog(UMLPackage init, FieldSummary field)
          Constructor for RenameFieldDialog
RenameFieldListener(UMLPackage initPackage, FieldSummary initField, javax.swing.JPopupMenu initMenu, javax.swing.JMenuItem initItem)
          Constructor for the RenameFieldListener object