android.net.LinkProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of androidstub Show documentation
Show all versions of androidstub Show documentation
provide android hidden api definition ,helper for android super framework development
package android.net;
import android.os.Parcel;
import android.os.Parcelable;
public class LinkProperties implements Parcelable {
protected LinkProperties(Parcel in) {
}
public static final Creator CREATOR = new Creator() {
@Override
public LinkProperties createFromParcel(Parcel in) {
return new LinkProperties(in);
}
@Override
public LinkProperties[] newArray(int size) {
return new LinkProperties[size];
}
};
@Override
public int describeContents() {
return 0;
}
@Override
public void writeToParcel(Parcel dest, int flags) {
}
}