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 Details

    • buildModel

      Digraph buildModel()
      Build the directed graph model.
      Returns:
      the built graph
    • getAddressForVertexId

      String getAddressForVertexId(int vertexId)
      Get the address associated with a vertex id.
      Parameters:
      vertexId - vertex id
      Returns:
      the associated address, or null if none exists
    • getVertexIdForAddress

      Integer getVertexIdForAddress(String address)
      Get the vertex id associated with an address.
      Parameters:
      address - vertex address
      Returns:
      the associated vertex id, or null if none exists