package android.graphics;
public final class BitmapRegionDecoder
{
BitmapRegionDecoder() { throw new RuntimeException("Stub!"); }
public static android.graphics.BitmapRegionDecoder newInstance(byte[] data, int offset, int length, boolean isShareable) throws java.io.IOException { throw new RuntimeException("Stub!"); }
public static android.graphics.BitmapRegionDecoder newInstance(java.io.FileDescriptor fd, boolean isShareable) throws java.io.IOException { throw new RuntimeException("Stub!"); }
public static android.graphics.BitmapRegionDecoder newInstance(java.io.InputStream is, boolean isShareable) throws java.io.IOException { throw new RuntimeException("Stub!"); }
public static android.graphics.BitmapRegionDecoder newInstance(java.lang.String pathName, boolean isShareable) throws java.io.IOException { throw new RuntimeException("Stub!"); }
public android.graphics.Bitmap decodeRegion(android.graphics.Rect rect, android.graphics.BitmapFactory.Options options) { throw new RuntimeException("Stub!"); }
public int getWidth() { throw new RuntimeException("Stub!"); }
public int getHeight() { throw new RuntimeException("Stub!"); }
public void recycle() { throw new RuntimeException("Stub!"); }
public final boolean isRecycled() { throw new RuntimeException("Stub!"); }
protected void finalize() throws java.lang.Throwable { throw new RuntimeException("Stub!"); }
}
|