Class InterproceduralCallGraphEdge
java.lang.Object
edu.umd.cs.findbugs.graph.AbstractEdge<InterproceduralCallGraphEdge, InterproceduralCallGraphVertex>
edu.umd.cs.findbugs.ba.ch.InterproceduralCallGraphEdge
- All Implemented Interfaces:
GraphEdge<InterproceduralCallGraphEdge, InterproceduralCallGraphVertex>, Comparable<InterproceduralCallGraphEdge>
public class InterproceduralCallGraphEdge
extends AbstractEdge<InterproceduralCallGraphEdge, InterproceduralCallGraphVertex>
A class representing an edge in the interprocedural call graph; i.e., a call
from one method to another.
-
Constructor Summary
ConstructorsConstructorDescriptionInterproceduralCallGraphEdge(InterproceduralCallGraphVertex source, InterproceduralCallGraphVertex target) Constructor. -
Method Summary
-
Constructor Details
-
InterproceduralCallGraphEdge
public InterproceduralCallGraphEdge(InterproceduralCallGraphVertex source, InterproceduralCallGraphVertex target) Constructor.- Parameters:
source- source vertex (caller)target- target vertex (callee)
-