diff options
Diffstat (limited to 'telephony/java/android/telephony/cdma/CdmaCellLocation.java')
-rw-r--r-- | telephony/java/android/telephony/cdma/CdmaCellLocation.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/telephony/java/android/telephony/cdma/CdmaCellLocation.java b/telephony/java/android/telephony/cdma/CdmaCellLocation.java index 7c10569f3376..ee602c06f0f7 100644 --- a/telephony/java/android/telephony/cdma/CdmaCellLocation.java +++ b/telephony/java/android/telephony/cdma/CdmaCellLocation.java @@ -16,6 +16,7 @@ package android.telephony.cdma; +import android.annotation.UnsupportedAppUsage; import android.os.Bundle; import android.telephony.CellLocation; @@ -23,6 +24,7 @@ import android.telephony.CellLocation; * Represents the cell location on a CDMA phone. */ public class CdmaCellLocation extends CellLocation { + @UnsupportedAppUsage private int mBaseStationId = -1; /** @@ -36,6 +38,7 @@ public class CdmaCellLocation extends CellLocation { * to 1296000, both values inclusive (corresponding to a range of -90 * to +90 degrees). Integer.MAX_VALUE is considered invalid value. */ + @UnsupportedAppUsage private int mBaseStationLatitude = INVALID_LAT_LONG; /** @@ -44,9 +47,12 @@ public class CdmaCellLocation extends CellLocation { * to 2592000, both values inclusive (corresponding to a range of -180 * to +180 degrees). Integer.MAX_VALUE is considered invalid value. */ + @UnsupportedAppUsage private int mBaseStationLongitude = INVALID_LAT_LONG; + @UnsupportedAppUsage private int mSystemId = -1; + @UnsupportedAppUsage private int mNetworkId = -1; /** @@ -200,6 +206,7 @@ public class CdmaCellLocation extends CellLocation { * @param b second obj * @return true if two objects equal or both are null */ + @UnsupportedAppUsage private static boolean equalsHandlesNulls(Object a, Object b) { return (a == null) ? (b == null) : a.equals (b); } |