com.pnfsoftware.jeb.core.units.code.android.dex.IDexPackage |
This class represent Java packages of a DEX objects.
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
abstract String |
getName(boolean effective)
Provide the package's top-level element name.
| ||||||||||
abstract boolean |
setName(String name)
Rename the top-level element of this package.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() | |||||||||||
![]() |
Provide the package's top-level element name. Example: if the package is "com.xyz.foo", then "foo" is returned.
effective | true to get the actual name, false to return the original name (if the unit allows the modification of items) |
---|
Rename the top-level element of this package. This method does not notify changes on success:
it is up to the user to issue a UnitChange
notification.
This method is for convenience only: users can always use the associated unit's
RENAME
action (through the
executeAction
method) to rename an item generically.
name | simple, top-level element package name |
---|