Package edu.umd.cs.findbugs
Interface InstructionScanner
-
public interface InstructionScanner
A scanner for implementing a state machine over a sequence of instructions and control edges.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isDone()
Return true if this scanner has completed, false otherwise.void
scanInstruction(org.apache.bcel.generic.InstructionHandle handle)
Traverse an instruction.void
traverseEdge(Edge edge)
Traverse an edge.
-
-
-
Method Detail
-
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.
-
-