package android.hardware.display;
public final class VirtualDisplay
{
public abstract static class Callback
{
public Callback() { throw new RuntimeException("Stub!"); }
public void onPaused() { throw new RuntimeException("Stub!"); }
public void onResumed() { throw new RuntimeException("Stub!"); }
public void onStopped() { throw new RuntimeException("Stub!"); }
}
VirtualDisplay() { throw new RuntimeException("Stub!"); }
public android.view.Display getDisplay() { throw new RuntimeException("Stub!"); }
public android.view.Surface getSurface() { throw new RuntimeException("Stub!"); }
public void setSurface(android.view.Surface surface) { throw new RuntimeException("Stub!"); }
public void resize(int width, int height, int densityDpi) { throw new RuntimeException("Stub!"); }
public void release() { throw new RuntimeException("Stub!"); }
public java.lang.String toString() { throw new RuntimeException("Stub!"); }
}
|