android.net.Network 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 Network implements Parcelable {
protected Network(Parcel in) {
}
@Override
public int describeContents() {
return 0;
}
public static final Creator CREATOR = new Creator() {
@Override
public Network createFromParcel(Parcel in) {
return new Network(in);
}
@Override
public Network[] newArray(int size) {
return new Network[size];
}
};
public void writeToParcel(Parcel data, int i) {
throw new UnsupportedOperationException("STUB");
}
}