Uses of Class
de.uka.ipd.sdq.ByCounter.parsing.CallGraphMethod

Packages that use CallGraphMethod
de.uka.ipd.sdq.ByCounter.parsing Provides analysis of the class structure of instrumented applications. 
 

Uses of CallGraphMethod in de.uka.ipd.sdq.ByCounter.parsing
 

Methods in de.uka.ipd.sdq.ByCounter.parsing that return CallGraphMethod
 CallGraphMethod CallGraph.findMethod(MethodDescriptor method)
          Find the specified method in the graph.
 

Methods in de.uka.ipd.sdq.ByCounter.parsing that return types with arguments of type CallGraphMethod
 java.util.List<CallGraphMethod> CallGraphMethod.getChildMethods()
           
 

Methods in de.uka.ipd.sdq.ByCounter.parsing with parameters of type CallGraphMethod
 void CallGraphMethod.addChildMethod(CallGraphMethod m)
          Add m to the list of child methods, i.e. methods called by this method.
 void CallGraph.addMethodCall(CallGraphMethod m1, CallGraphMethod m2)
          Adds a link from method m1 to method m2.