Package org.jf.dexlib2.immutable.debug
Class ImmutableDebugItem
- java.lang.Object
-
- org.jf.dexlib2.immutable.debug.ImmutableDebugItem
-
- All Implemented Interfaces:
DebugItem
- Direct Known Subclasses:
ImmutableEndLocal,ImmutableEpilogueBegin,ImmutableLineNumber,ImmutablePrologueEnd,ImmutableRestartLocal,ImmutableSetSourceFile,ImmutableStartLocal
public abstract class ImmutableDebugItem extends java.lang.Object implements DebugItem
-
-
Field Summary
Fields Modifier and Type Field Description protected intcodeAddress
-
Constructor Summary
Constructors Constructor Description ImmutableDebugItem(int codeAddress)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetCodeAddress()static com.google.common.collect.ImmutableList<ImmutableDebugItem>immutableListOf(java.lang.Iterable<? extends DebugItem> list)static ImmutableDebugItemof(DebugItem debugItem)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.jf.dexlib2.iface.debug.DebugItem
getDebugItemType
-
-
-
-
Method Detail
-
of
@Nonnull public static ImmutableDebugItem of(DebugItem debugItem)
-
getCodeAddress
public int getCodeAddress()
- Specified by:
getCodeAddressin interfaceDebugItem- Returns:
- The code address
-
immutableListOf
@Nonnull public static com.google.common.collect.ImmutableList<ImmutableDebugItem> immutableListOf(@Nullable java.lang.Iterable<? extends DebugItem> list)
-
-