dalvik.system.DexFile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android Show documentation
Show all versions of android Show documentation
A library jar that provides APIs for Applications written for the Google Android Platform. The branch tag
that was used to checkout the source from the Git repos was android-2.1_r2.
package dalvik.system;
public final class DexFile
{
public DexFile(java.io.File file) throws java.io.IOException { throw new RuntimeException("Stub!"); }
public DexFile(java.lang.String fileName) throws java.io.IOException { throw new RuntimeException("Stub!"); }
public static dalvik.system.DexFile loadDex(java.lang.String sourcePathName, java.lang.String outputPathName, int flags) throws java.io.IOException { throw new RuntimeException("Stub!"); }
public java.lang.String getName() { throw new RuntimeException("Stub!"); }
public void close() throws java.io.IOException { throw new RuntimeException("Stub!"); }
public java.lang.Class loadClass(java.lang.String name, java.lang.ClassLoader loader) { throw new RuntimeException("Stub!"); }
public java.util.Enumeration entries() { throw new RuntimeException("Stub!"); }
protected void finalize() throws java.io.IOException { throw new RuntimeException("Stub!"); }
public static native boolean isDexOptNeeded(java.lang.String fileName) throws java.io.FileNotFoundException, java.io.IOException;
}