# Print output for @column tags ?>
public
final
class
InMemoryDexClassLoader
extends BaseDexClassLoader
| java.lang.Object | |||
| ↳ | java.lang.ClassLoader | ||
| ↳ | dalvik.system.BaseDexClassLoader | ||
| ↳ | dalvik.system.InMemoryDexClassLoader | ||
A ClassLoader implementation that loads classes from a
buffer containing a DEX file. This can be used to execute code that
has not been written to the local file system.
Public constructors | |
|---|---|
InMemoryDexClassLoader(ByteBuffer[] dexBuffers, String librarySearchPath, ClassLoader parent)
Create an in-memory DEX class loader with the given dex buffers. |
|
InMemoryDexClassLoader(ByteBuffer[] dexBuffers, ClassLoader parent)
Create an in-memory DEX class loader with the given dex buffers. |
|
InMemoryDexClassLoader(ByteBuffer dexBuffer, ClassLoader parent)
Creates a new in-memory DEX class loader. |
|
Inherited methods | |
|---|---|
public InMemoryDexClassLoader (ByteBuffer[] dexBuffers, String librarySearchPath, ClassLoader parent)
Create an in-memory DEX class loader with the given dex buffers.
| Parameters | |
|---|---|
dexBuffers |
ByteBuffer: array of buffers containing DEX files between
buffer.position() and buffer.limit().
This value cannot be null. |
librarySearchPath |
String: the list of directories containing native
libraries, delimited by File.pathSeparator; may be null
This value may be null. |
parent |
ClassLoader: the parent class loader for delegation.
This value may be null. |
public InMemoryDexClassLoader (ByteBuffer[] dexBuffers, ClassLoader parent)
Create an in-memory DEX class loader with the given dex buffers.
| Parameters | |
|---|---|
dexBuffers |
ByteBuffer: array of buffers containing DEX files between
buffer.position() and buffer.limit().
This value cannot be null. |
parent |
ClassLoader: the parent class loader for delegation.
This value may be null. |
public InMemoryDexClassLoader (ByteBuffer dexBuffer, ClassLoader parent)
Creates a new in-memory DEX class loader.
| Parameters | |
|---|---|
dexBuffer |
ByteBuffer: buffer containing DEX file contents between
buffer.position() and buffer.limit().
This value cannot be null. |
parent |
ClassLoader: the parent class loader for delegation.
This value may be null. |