Package org.jf.dexlib2.iface.debug
Interface LineNumber
-
- All Superinterfaces:
DebugItem
- All Known Implementing Classes:
BuilderLineNumber
,ImmutableLineNumber
public interface LineNumber extends DebugItem
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getLineNumber()
The line number associated with this code address.-
Methods inherited from interface org.jf.dexlib2.iface.debug.DebugItem
getCodeAddress, getDebugItemType
-
-
-
-
Method Detail
-
getLineNumber
int getLineNumber()
The line number associated with this code address. This value should be treated as an unsigned integer, with negative values indicating a value > 2^31, using the usual two's complement semantics.- Returns:
- The line number associated with this code address.
-
-