diff options
author | Mike Lockwood <lockwood@android.com> | 2010-05-21 15:19:42 -0400 |
---|---|---|
committer | Mike Lockwood <lockwood@android.com> | 2010-05-21 15:19:42 -0400 |
commit | 965b3d2b84c1ac9ed38c56f818e4f0aae9e138ac (patch) | |
tree | a4a1c78dfa1d09403f6a63b7811b55c160f65f6d /location | |
parent | 0881f4f9339febee85c9ab4cba69970ac5cbde55 (diff) | |
download | frameworks_base-965b3d2b84c1ac9ed38c56f818e4f0aae9e138ac.zip frameworks_base-965b3d2b84c1ac9ed38c56f818e4f0aae9e138ac.tar.gz frameworks_base-965b3d2b84c1ac9ed38c56f818e4f0aae9e138ac.tar.bz2 |
Fix broken Javadoc links
Change-Id: I6896d6ec16b522e9e63776c0992ef55a6db82d50
Signed-off-by: Mike Lockwood <lockwood@android.com>
Diffstat (limited to 'location')
-rw-r--r-- | location/java/android/location/provider/GeocodeProvider.java | 4 | ||||
-rw-r--r-- | location/java/android/location/provider/LocationProvider.java | 12 |
2 files changed, 8 insertions, 8 deletions
diff --git a/location/java/android/location/provider/GeocodeProvider.java b/location/java/android/location/provider/GeocodeProvider.java index db5c078..9a58763 100644 --- a/location/java/android/location/provider/GeocodeProvider.java +++ b/location/java/android/location/provider/GeocodeProvider.java @@ -51,7 +51,7 @@ public abstract class GeocodeProvider { /** * This method is overridden to implement the - * {@link Geocoder#getFromLocation(double, double, int)} method. + * {@link android.location.Geocoder#getFromLocation(double, double, int)} method. * Classes implementing this method should not hold a reference to the params parameter. */ public abstract String onGetFromLocation(double latitude, double longitude, int maxResults, @@ -59,7 +59,7 @@ public abstract class GeocodeProvider { /** * This method is overridden to implement the - * {@link Geocoder#getFromLocationName(String, int, double, double, double, double)} method. + * {@link android.location.Geocoder#getFromLocationName(String, int, double, double, double, double)} method. * Classes implementing this method should not hold a reference to the params parameter. */ public abstract String onGetFromLocationName(String locationName, diff --git a/location/java/android/location/provider/LocationProvider.java b/location/java/android/location/provider/LocationProvider.java index 5771363..cf939de 100644 --- a/location/java/android/location/provider/LocationProvider.java +++ b/location/java/android/location/provider/LocationProvider.java @@ -255,11 +255,11 @@ public abstract class LocationProvider { /** * Returns a information on the status of this provider. - * {@link #OUT_OF_SERVICE} is returned if the provider is + * {@link android.location.LocationProvider#OUT_OF_SERVICE} is returned if the provider is * out of service, and this is not expected to change in the near - * future; {@link #TEMPORARILY_UNAVAILABLE} is returned if + * future; {@link android.location.LocationProvider#TEMPORARILY_UNAVAILABLE} is returned if * the provider is temporarily unavailable but is expected to be - * available shortly; and {@link #AVAILABLE} is returned + * available shortly; and {@link android.location.LocationProvider#AVAILABLE} is returned * if the provider is currently available. * * <p> If extras is non-null, additional status information may be @@ -308,9 +308,9 @@ public abstract class LocationProvider { /** * Updates the network state for the given provider. This function must - * be overwritten if {@link #requiresNetwork} returns true. The state is - * {@link #TEMPORARILY_UNAVAILABLE} (disconnected), OR {@link #AVAILABLE} - * (connected or connecting). + * be overwritten if {@link android.location.LocationProvider#requiresNetwork} returns true. + * The state is {@link android.location.LocationProvider#TEMPORARILY_UNAVAILABLE} (disconnected) + * OR {@link android.location.LocationProvider#AVAILABLE} (connected or connecting). * * @param state data state */ |