Package org.jf.dexlib2.iface
Interface MultiDexContainer<T extends DexFile>
- All Known Implementing Classes:
DexFileFactory.SingletonMultiDexContainer,ImmutableMultiDexContainer,OatFile,ZipDexContainer
public interface MultiDexContainer<T extends DexFile>
This class represents a dex container that can contain multiple, named dex files
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interfaceMultiDexContainer.DexEntry<T extends DexFile>This class represents a dex file entry in a MultiDexContainer -
Method Summary
Modifier and TypeMethodDescriptionGets the dex entry with the given name
-
Method Details
-
getDexEntryNames
- Returns:
- A list of the names of dex entries in this container
- Throws:
IOException
-
getEntry
Gets the dex entry with the given name- Parameters:
entryName- The name of the entry- Returns:
- A DexFile, or null if no entry with that name is found
- Throws:
IOException
-