Package edu.umd.cs.findbugs
Interface InstructionScanner
-
public interface InstructionScannerA 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 booleanisDone()Return true if this scanner has completed, false otherwise.voidscanInstruction(org.apache.bcel.generic.InstructionHandle handle)Traverse an instruction.voidtraverseEdge(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.
-
-