diff options
author | Robert Greenwalt <rgreenwalt@google.com> | 2014-05-18 12:05:05 -0700 |
---|---|---|
committer | Robert Greenwalt <rgreenwalt@google.com> | 2014-05-18 12:43:14 -0700 |
commit | 4095bd5a8811d4d8c2bb0efc28d9610629e27c89 (patch) | |
tree | b8e74e77fd251d836ea3060a9fed156712e5facd /api | |
parent | 5575def80c548f952722e3a8cdf405aafbe37019 (diff) | |
download | frameworks_base-4095bd5a8811d4d8c2bb0efc28d9610629e27c89.zip frameworks_base-4095bd5a8811d4d8c2bb0efc28d9610629e27c89.tar.gz frameworks_base-4095bd5a8811d4d8c2bb0efc28d9610629e27c89.tar.bz2 |
Update RouteInfo docs and make public.
Change-Id: I1a8fe04022ea8291076af166f09112d19114ee16
Diffstat (limited to 'api')
-rw-r--r-- | api/current.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/api/current.txt b/api/current.txt index 3b0702e..be7ca33 100644 --- a/api/current.txt +++ b/api/current.txt @@ -15998,6 +15998,20 @@ package android.net { method public void writeToParcel(android.os.Parcel, int); } + public class RouteInfo implements android.os.Parcelable { + ctor public RouteInfo(android.net.LinkAddress, java.net.InetAddress); + ctor public RouteInfo(java.net.InetAddress); + ctor public RouteInfo(android.net.LinkAddress); + method public int describeContents(); + method public android.net.LinkAddress getDestination(); + method public java.net.InetAddress getGateway(); + method public java.lang.String getInterface(); + method public boolean hasGateway(); + method public boolean isDefaultRoute(); + method public boolean isHostRoute(); + method public void writeToParcel(android.os.Parcel, int); + } + public class SSLCertificateSocketFactory extends javax.net.ssl.SSLSocketFactory { ctor public deprecated SSLCertificateSocketFactory(int); method public java.net.Socket createSocket(java.net.Socket, java.lang.String, int, boolean) throws java.io.IOException; |