diff options
author | Mike Lockwood <lockwood@android.com> | 2010-03-02 17:13:28 -0800 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2010-03-02 17:13:28 -0800 |
commit | c018f3cfdd8a8277dbb3b61d4761974862876ab9 (patch) | |
tree | 0a61db1518ab65752aee459656d461dd8203bce8 | |
parent | 34a223850eeb49b64af20f828dbded7671f34074 (diff) | |
parent | 8754be5cac3aca54f83e2eb2c199bc01e934034e (diff) | |
download | frameworks_base-c018f3cfdd8a8277dbb3b61d4761974862876ab9.zip frameworks_base-c018f3cfdd8a8277dbb3b61d4761974862876ab9.tar.gz frameworks_base-c018f3cfdd8a8277dbb3b61d4761974862876ab9.tar.bz2 |
Merge "Hide GeocoderParams class from public API."
-rw-r--r-- | api/current.xml | 69 | ||||
-rw-r--r-- | location/java/android/location/GeocoderParams.java | 2 |
2 files changed, 2 insertions, 69 deletions
diff --git a/api/current.xml b/api/current.xml index 28a7168..be38d49 100644 --- a/api/current.xml +++ b/api/current.xml @@ -78061,75 +78061,6 @@ </exception> </method> </class> -<class name="GeocoderParams" - extends="java.lang.Object" - abstract="false" - static="false" - final="false" - deprecated="not deprecated" - visibility="public" -> -<implements name="android.os.Parcelable"> -</implements> -<method name="describeContents" - return="int" - abstract="false" - native="false" - synchronized="false" - static="false" - final="false" - deprecated="not deprecated" - visibility="public" -> -</method> -<method name="getClientPackage" - return="java.lang.String" - abstract="false" - native="false" - synchronized="false" - static="false" - final="false" - deprecated="not deprecated" - visibility="public" -> -</method> -<method name="getLocale" - return="java.util.Locale" - abstract="false" - native="false" - synchronized="false" - static="false" - final="false" - deprecated="not deprecated" - visibility="public" -> -</method> -<method name="writeToParcel" - return="void" - abstract="false" - native="false" - synchronized="false" - static="false" - final="false" - deprecated="not deprecated" - visibility="public" -> -<parameter name="parcel" type="android.os.Parcel"> -</parameter> -<parameter name="flags" type="int"> -</parameter> -</method> -<field name="CREATOR" - type="android.os.Parcelable.Creator" - transient="false" - volatile="false" - static="true" - final="true" - deprecated="not deprecated" - visibility="public" -> -</field> -</class> <class name="GpsSatellite" extends="java.lang.Object" abstract="false" diff --git a/location/java/android/location/GeocoderParams.java b/location/java/android/location/GeocoderParams.java index 8b8e63b..174fe3e 100644 --- a/location/java/android/location/GeocoderParams.java +++ b/location/java/android/location/GeocoderParams.java @@ -29,6 +29,8 @@ import java.util.Locale; * as well as the Geocoder client's package name for geocoder server * logging. This information is kept in a separate class to allow for * future expansion of the IGeocodeProvider interface. + * + * @hide */ public class GeocoderParams implements Parcelable { private Locale mLocale; |