Package com.pnfsoftware.jeb.util.graph
Interface IAddressableDigraphBuilder
- All Known Implementing Classes:
DalvikCallgraphBuilder,NativeCallgraphBuilder
public interface IAddressableDigraphBuilder
A builder of directed graphs whose vertices can be assigned and retrieved by String addresses.
-
Method Summary
Modifier and TypeMethodDescriptionBuild the directed graph model.getAddressForVertexId(int vertexId) Get the address associated with a vertex id.getVertexIdForAddress(String address) Get the vertex id associated with an address.
-
Method Details
-
buildModel
Digraph buildModel()Build the directed graph model.- Returns:
- the built graph
-
getAddressForVertexId
Get the address associated with a vertex id.- Parameters:
vertexId- vertex id- Returns:
- the associated address, or null if none exists
-
getVertexIdForAddress
Get the vertex id associated with an address.- Parameters:
address- vertex address- Returns:
- the associated vertex id, or null if none exists
-