Package org.jf.dexlib2.iface
Interface DexFile
- All Known Implementing Classes:
CDexBackedDexFile,DexBackedDexFile,DexBackedOdexFile,DexFileRewriter.RewrittenDexFile,ImmutableDexFile,OatFile.OatCDexFile,OatFile.OatDexFile
public interface DexFile
This class is a high level representation of a dex file - essentially a set of class definitions.
-
Method Summary
Modifier and TypeMethodDescriptionGet a set of the classes defined in this dex file.Get the Opcodes associated with this dex file
-
Method Details
-
getClasses
Get a set of the classes defined in this dex file. The classes in the returned set will all have unique types.- Returns:
- A set of the classes defined in this dex file
-
getOpcodes
Get the Opcodes associated with this dex file- Returns:
- The Opcodes instance representing the possible opcodes that can be encountered in this dex file
-