package android.hardware.camera2;
public class CaptureFailure
{
CaptureFailure() { throw new RuntimeException("Stub!"); }
public android.hardware.camera2.CaptureRequest getRequest() { throw new RuntimeException("Stub!"); }
public long getFrameNumber() { throw new RuntimeException("Stub!"); }
public int getReason() { throw new RuntimeException("Stub!"); }
public boolean wasImageCaptured() { throw new RuntimeException("Stub!"); }
public int getSequenceId() { throw new RuntimeException("Stub!"); }
public static final int REASON_ERROR = 0;
public static final int REASON_FLUSHED = 1;
}
|