Interface BytecodeScanner.Callback
- All Known Implementing Classes:
InnerClassAccessMap.InstructionCallback, UnpackedBytecodeCallback
- Enclosing class:
BytecodeScanner
public static interface BytecodeScanner.Callback
Callback interface to report scanned instructions.
-
Method Summary
Modifier and TypeMethodDescriptionvoidhandleInstruction(int opcode, int index) Called to indicate that a particular bytecode has been scanned.
-
Method Details
-
handleInstruction
void handleInstruction(int opcode, int index) Called to indicate that a particular bytecode has been scanned.- Parameters:
opcode- the opcode of the instructionindex- the bytecode offset of the instruction
-