| com.pnfsoftware.jeb.core.units.code.android.IDexUnit |
Interface for units representing Android Dalvik bytecode containers, aka DEX files. Units representing DEX bytecode are not obliged to implement this interface.
JEB's internal DEX parser produces units which do implement this interface.
| Constants | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| int | ACC_ABSTRACT | ||||||||||
| int | ACC_ANNOTATION | ||||||||||
| int | ACC_BRIDGE | ||||||||||
| int | ACC_CONSTRUCTOR | ||||||||||
| int | ACC_DECLARED_SYNCHRONIZED | ||||||||||
| int | ACC_ENUM | ||||||||||
| int | ACC_FINAL | ||||||||||
| int | ACC_INTERFACE | ||||||||||
| int | ACC_NATIVE | ||||||||||
| int | ACC_PRIVATE | ||||||||||
| int | ACC_PROTECTED | ||||||||||
| int | ACC_PUBLIC | ||||||||||
| int | ACC_STATIC | ||||||||||
| int | ACC_STRICT | ||||||||||
| int | ACC_SYNCHRONIZED | ||||||||||
| int | ACC_SYNTHETIC | ||||||||||
| int | ACC_TRANSIENT | ||||||||||
| int | ACC_VARARGS | ||||||||||
| int | ACC_VOLATILE | ||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| abstract IDexField |
addField(String signature)
Create a new field and add it to the field pool index.
| ||||||||||
| abstract IDexMethod |
addMethod(String signature)
Create a new method reference and add it to the method pool index.
| ||||||||||
| abstract IDexPrototype |
addPrototype(String prototypeString)
Create a new DEX prototype and add it to the prototype pool index.
| ||||||||||
| abstract IDexString |
addString(String value)
Create a new string and add it to the string pool index.
| ||||||||||
| abstract IDexType |
addType(String typeString)
Create a new type and add it to the type pool index.
| ||||||||||
| abstract IDexClass |
getClass(String fqname)
Convenience method used to retrieve a class by name.
| ||||||||||
| abstract IDexClass |
getClass(int index)
Convenience method to retrieve a class by its DEX class pool index.
| ||||||||||
| abstract List<? extends IDexClass> |
getClasses()
Get the DEX class pool
| ||||||||||
| abstract IDexField |
getField(String fqname)
Convenience method used to retrieve a field by name.
| ||||||||||
| abstract IDexField |
getField(int index)
Convenience method to retrieve a field by its DEX field pool index.
| ||||||||||
| abstract List<? extends IDexField> |
getFields()
Get the DEX field pool
| ||||||||||
| abstract IDexMethod |
getMethod(int index)
Convenience method to retrieve a method by its DEX method pool index.
| ||||||||||
| abstract IDexMethod |
getMethod(String fqname)
Convenience method used to retrieve a method by name.
| ||||||||||
| abstract List<? extends IDexMethod> |
getMethods()
Get the DEX method pool
| ||||||||||
| abstract IDexPrototype |
getPrototype(int index)
Convenience method to retrieve a prototype by its DEX prototype pool index.
| ||||||||||
| abstract List<? extends IDexPrototype> |
getPrototypes()
Get the list of DEX prototypes defined in the DEX file (prototype pool).
| ||||||||||
| abstract IDexString |
getString(int index)
Convenience method to retrieve a string by its DEX string pool index.
| ||||||||||
| abstract List<? extends IDexString> |
getStrings()
Get the DEX string pool, including extra strings added via
addString. | ||||||||||
| abstract IDexType |
getType(int index)
Convenience method to retrieve a type by its DEX type pool index.
| ||||||||||
| abstract List<? extends IDexType> |
getTypes()
Get the DEX prototype pool
| ||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From interface
com.pnfsoftware.jeb.core.units.IInteractiveUnit
| |||||||||||
From interface
com.pnfsoftware.jeb.core.units.IUnit
| |||||||||||
From interface
com.pnfsoftware.jeb.core.units.code.ICodeUnit
| |||||||||||
From interface
com.pnfsoftware.jeb.util.events.IEventSource
| |||||||||||
Create a new field and add it to the field pool index.
Create a new method reference and add it to the method pool index.
Create a new DEX prototype and add it to the prototype pool index.
| prototypeString | a full prototype string, such as:
(typeParam1,typeParam2,...)typeReturn |
|---|
Create a new string and add it to the string pool index.
Create a new type and add it to the type pool index.
| typeString | a fully-qualified type name, using the standard Java internal signature
notation (L...;) |
|---|
Convenience method used to retrieve a class by name.
Convenience method to retrieve a class by its DEX class pool index.
Convenience method used to retrieve a field by name.
Convenience method to retrieve a field by its DEX field pool index.
Convenience method to retrieve a method by its DEX method pool index.
Convenience method used to retrieve a method by name.
Convenience method to retrieve a prototype by its DEX prototype pool index.
| index | prototype index |
|---|
Get the list of DEX prototypes defined in the DEX file (prototype pool).
Convenience method to retrieve a string by its DEX string pool index.
Get the DEX string pool, including extra strings added via addString.
Convenience method to retrieve a type by its DEX type pool index.