mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
30 lines
1.1 KiB
Java
Generated
30 lines
1.1 KiB
Java
Generated
// Generated automatically from android.graphics.Insets for testing purposes
|
|
|
|
package android.graphics;
|
|
|
|
import android.graphics.Rect;
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
public class Insets implements Parcelable
|
|
{
|
|
protected Insets() {}
|
|
public String toString(){ return null; }
|
|
public boolean equals(Object p0){ return false; }
|
|
public final int bottom = 0;
|
|
public final int left = 0;
|
|
public final int right = 0;
|
|
public final int top = 0;
|
|
public int describeContents(){ return 0; }
|
|
public int hashCode(){ return 0; }
|
|
public static Insets NONE = null;
|
|
public static Insets add(Insets p0, Insets p1){ return null; }
|
|
public static Insets max(Insets p0, Insets p1){ return null; }
|
|
public static Insets min(Insets p0, Insets p1){ return null; }
|
|
public static Insets of(Rect p0){ return null; }
|
|
public static Insets of(int p0, int p1, int p2, int p3){ return null; }
|
|
public static Insets subtract(Insets p0, Insets p1){ return null; }
|
|
public static Parcelable.Creator<Insets> CREATOR = null;
|
|
public void writeToParcel(Parcel p0, int p1){}
|
|
}
|