Interface InstructionScanner


public interface InstructionScanner
A scanner for implementing a state machine over a sequence of instructions and control edges.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Return true if this scanner has completed, false otherwise.
    void
    scanInstruction(org.apache.bcel.generic.InstructionHandle handle)
    Traverse an instruction.
    void
    Traverse an edge.
  • Method Details

    • traverseEdge

      void traverseEdge(Edge edge)
      Traverse an edge.
    • scanInstruction

      void scanInstruction(org.apache.bcel.generic.InstructionHandle handle)
      Traverse an instruction.
    • isDone

      boolean isDone()
      Return true if this scanner has completed, false otherwise.