Class UnpackedBytecodeCallback
- java.lang.Object
-
- edu.umd.cs.findbugs.classfile.engine.bcel.UnpackedBytecodeCallback
-
- All Implemented Interfaces:
BytecodeScanner.Callback
public class UnpackedBytecodeCallback extends java.lang.Object implements BytecodeScanner.Callback
-
-
Constructor Summary
Constructors Constructor Description UnpackedBytecodeCallback(int codeSize)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UnpackedCode
getUnpackedCode()
void
handleInstruction(int opcode, int index)
Called to indicate that a particular bytecode has been scanned.
-
-
-
Method Detail
-
handleInstruction
public void handleInstruction(int opcode, int index)
Description copied from interface:BytecodeScanner.Callback
Called to indicate that a particular bytecode has been scanned.- Specified by:
handleInstruction
in interfaceBytecodeScanner.Callback
- Parameters:
opcode
- the opcode of the instructionindex
- the bytecode offset of the instruction
-
getUnpackedCode
public UnpackedCode getUnpackedCode()
-
-