public interface CallGraph
Root object for traversing through call graph. Graph does not represent polymorphic calls. Instead, it generated multiple call sites for one location.
| Modifier and Type | Method and Description |
|---|---|
Collection<? extends ClassAccessSite> |
getClassAccess(String className) |
Collection<? extends FieldAccessSite> |
getFieldAccess(FieldReference reference) |
CallGraphNode |
getNode(MethodReference method)
Get node corresponding to the specific method.
|
CallGraphNode getNode(MethodReference method)
Get node corresponding to the specific method.
method - a method to lookup node for.null, if this method is never
called.Collection<? extends FieldAccessSite> getFieldAccess(FieldReference reference)
Collection<? extends ClassAccessSite> getClassAccess(String className)
Copyright © 2015. All rights reserved.