mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
26 lines
933 B
Java
Generated
26 lines
933 B
Java
Generated
// Generated automatically from android.print.PrintDocumentInfo for testing purposes
|
|
|
|
package android.print;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
public class PrintDocumentInfo implements Parcelable
|
|
{
|
|
protected PrintDocumentInfo() {}
|
|
public String getName(){ return null; }
|
|
public String toString(){ return null; }
|
|
public boolean equals(Object p0){ return false; }
|
|
public int describeContents(){ return 0; }
|
|
public int getContentType(){ return 0; }
|
|
public int getPageCount(){ return 0; }
|
|
public int hashCode(){ return 0; }
|
|
public long getDataSize(){ return 0; }
|
|
public static Parcelable.Creator<PrintDocumentInfo> CREATOR = null;
|
|
public static int CONTENT_TYPE_DOCUMENT = 0;
|
|
public static int CONTENT_TYPE_PHOTO = 0;
|
|
public static int CONTENT_TYPE_UNKNOWN = 0;
|
|
public static int PAGE_COUNT_UNKNOWN = 0;
|
|
public void writeToParcel(Parcel p0, int p1){}
|
|
}
|