Class UnpackedCode
- java.lang.Object
-
- edu.umd.cs.findbugs.classfile.engine.bcel.UnpackedCode
-
public class UnpackedCode extends java.lang.Object
Unpacked code for a method. Contains set of all opcodes in the method, as well as a map of bytecode offsets to opcodes.
-
-
Constructor Summary
Constructors Constructor Description UnpackedCode(MethodBytecodeSet bytecodeSet, short[] offsetToBytecodeMap)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MethodBytecodeSet
getBytecodeSet()
short[]
getOffsetToBytecodeMap()
-
-
-
Constructor Detail
-
UnpackedCode
public UnpackedCode(MethodBytecodeSet bytecodeSet, short[] offsetToBytecodeMap)
-
-
Method Detail
-
getBytecodeSet
public MethodBytecodeSet getBytecodeSet()
- Returns:
- Returns the bytecodeSet.
-
getOffsetToBytecodeMap
public short[] getOffsetToBytecodeMap()
- Returns:
- Returns the offsetToBytecodeMap.
-
-