public interface MutableCallGraph extends CallGraph
| Modifier and Type | Method and Description |
|---|---|
void |
addCall(MethodSignature sourceMethod,
MethodSignature targetMethod)
This method enables to add calls that are edges in the call graph.
|
void |
addMethod(MethodSignature calledMethod)
This method enables to add method that are nodes in the call graph.
|
callCount, callsFrom, callsTo, containsCall, containsMethod, copy, exportAsDot, getMethodSignaturesvoid addMethod(@Nonnull MethodSignature calledMethod)
calledMethod - the method that will be added to the call graph.void addCall(@Nonnull MethodSignature sourceMethod, @Nonnull MethodSignature targetMethod)
sourceMethod - this parameter defines the source node of the edge in the call graph.targetMethod - this paramter defines the target node of the edge in the call graph.Copyright © 2024 Soot OSS. All rights reserved.