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

Packages that use TypeDeclSummary
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   
 

Uses of TypeDeclSummary in org.acm.seguin.metrics
 

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

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

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

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

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

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

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

Uses of TypeDeclSummary in org.acm.seguin.summary
 

Methods in org.acm.seguin.summary that return TypeDeclSummary
 TypeDeclSummary TypeSummary.getParentClass()
          Return the parent class
 TypeDeclSummary MethodSummary.getReturnType()
          Get the return
 TypeDeclSummary MessageSendSummary.getTypeDecl()
          Gets a type declaration if this reference is to a package and type pair
 TypeDeclSummary VariableSummary.getTypeDecl()
          Return the type as a type summary
 TypeDeclSummary FieldAccessSummary.getTypeDecl()
          Gets a type declaration if this reference is to a package and type pair
static TypeDeclSummary TypeDeclSummary.getTypeDeclSummary(Summary parentSummary, net.sourceforge.jrefactory.ast.ASTReferenceType typeNode)
          Factory method.
static TypeDeclSummary TypeDeclSummary.getTypeDeclSummary(Summary parentSummary, net.sourceforge.jrefactory.ast.ASTResultType typeNode)
          Factory method.
static TypeDeclSummary TypeDeclSummary.getTypeDeclSummary(Summary parentSummary, net.sourceforge.jrefactory.ast.ASTType typeNode)
          Factory method.
 

Methods in org.acm.seguin.summary with parameters of type TypeDeclSummary
protected  void MethodSummary.add(TypeDeclSummary except)
          Add the formal parameters
protected  void TypeSummary.add(TypeDeclSummary typeDeclSummary)
          Add an interface summary
 boolean TypeDeclSummary.isSame(TypeDeclSummary other)
          Gets the same attribute of the TypeDeclSummary object
 void MethodSummary.setReturnType(TypeDeclSummary type)
          Set the return
 java.lang.Object SummaryVisitor.visit(TypeDeclSummary node, java.lang.Object data)
          Visit a type declaration summary.
 java.lang.Object PrintVisitor.visit(TypeDeclSummary node, java.lang.Object data)
          Visit a type declaration summary.
 java.lang.Object TraversalVisitor.visit(TypeDeclSummary node, java.lang.Object data)
          Visit a type declaration summary.
 

Constructors in org.acm.seguin.summary with parameters of type TypeDeclSummary
FieldSummary(Summary parentSummary, TypeDeclSummary type, java.lang.String name)
          Creates a parameter summary
LocalVariableSummary(Summary parentSummary, TypeDeclSummary type, java.lang.String name)
          Constructor for the LocalVariableSummary object
ParameterSummary(Summary parentSummary, TypeDeclSummary type, java.lang.String name)
          Creates a parameter summary
VariableSummary(Summary parentSummary, TypeDeclSummary type, java.lang.String name)
          Create a variable for debugging purposes
 

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

Methods in org.acm.seguin.summary.query with parameters of type TypeDeclSummary
static TypeSummary GetTypeSummary.query(TypeDeclSummary typeDecl)
          Get the type summary that this object refers to.