All Downloads are FREE. Search and download functionalities are using the official Maven repository.

android.net.LinkProperties Maven / Gradle / Ivy

Go to download

provide android hidden api definition ,helper for android super framework development

There is a newer version: 1.11
Show newest version
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) {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy