Package jadx.api.plugins.input.data
Interface ICodeReader
-
public interface ICodeReader
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ICodeReadercopy()intgetArgsStartReg()intgetCodeOffset()@Nullable IDebugInfogetDebugInfo()intgetRegistersCount()java.util.List<ITry>getTries()intgetUnitsCount()voidvisitInstructions(java.util.function.Consumer<InsnData> insnConsumer)
-
-
-
Method Detail
-
copy
ICodeReader copy()
-
visitInstructions
void visitInstructions(java.util.function.Consumer<InsnData> insnConsumer)
-
getRegistersCount
int getRegistersCount()
-
getArgsStartReg
int getArgsStartReg()
-
getUnitsCount
int getUnitsCount()
-
getDebugInfo
@Nullable @Nullable IDebugInfo getDebugInfo()
-
getCodeOffset
int getCodeOffset()
-
getTries
java.util.List<ITry> getTries()
-
-