diff options
author | Mike Lockwood <lockwood@android.com> | 2009-09-17 16:42:09 -0400 |
---|---|---|
committer | Mike Lockwood <lockwood@android.com> | 2009-09-17 19:23:15 -0400 |
commit | 1b90def3c683afaea528a0ee705b14df6ce2e2c7 (patch) | |
tree | bb5376233116a4f39e718889d86966eb926dc22c /api | |
parent | 96352104fbb172d91f957551c772988e02d79f33 (diff) | |
download | frameworks_base-1b90def3c683afaea528a0ee705b14df6ce2e2c7.zip frameworks_base-1b90def3c683afaea528a0ee705b14df6ce2e2c7.tar.gz frameworks_base-1b90def3c683afaea528a0ee705b14df6ce2e2c7.tar.bz2 |
telephony: Add CdmaCellLocation class to the public API.
Its twin sister GsmCellLocation is public, so this really should be in the SDK too.
Change-Id: If6f5899047546a7398f1e4191c67acf15555c21b
Signed-off-by: Mike Lockwood <lockwood@android.com>
Diffstat (limited to 'api')
-rw-r--r-- | api/current.xml | 147 |
1 files changed, 147 insertions, 0 deletions
diff --git a/api/current.xml b/api/current.xml index b348555..46565f2 100644 --- a/api/current.xml +++ b/api/current.xml @@ -121613,6 +121613,153 @@ </field> </class> </package> +<package name="android.telephony.cdma" +> +<class name="CdmaCellLocation" + extends="android.telephony.CellLocation" + abstract="false" + static="false" + final="false" + deprecated="not deprecated" + visibility="public" +> +<constructor name="CdmaCellLocation" + type="android.telephony.cdma.CdmaCellLocation" + static="false" + final="false" + deprecated="not deprecated" + visibility="public" +> +</constructor> +<constructor name="CdmaCellLocation" + type="android.telephony.cdma.CdmaCellLocation" + static="false" + final="false" + deprecated="not deprecated" + visibility="public" +> +<parameter name="bundleWithValues" type="android.os.Bundle"> +</parameter> +</constructor> +<method name="fillInNotifierBundle" + return="void" + abstract="false" + native="false" + synchronized="false" + static="false" + final="false" + deprecated="not deprecated" + visibility="public" +> +<parameter name="bundleToFill" type="android.os.Bundle"> +</parameter> +</method> +<method name="getBaseStationId" + return="int" + abstract="false" + native="false" + synchronized="false" + static="false" + final="false" + deprecated="not deprecated" + visibility="public" +> +</method> +<method name="getBaseStationLatitude" + return="int" + abstract="false" + native="false" + synchronized="false" + static="false" + final="false" + deprecated="not deprecated" + visibility="public" +> +</method> +<method name="getBaseStationLongitude" + return="int" + abstract="false" + native="false" + synchronized="false" + static="false" + final="false" + deprecated="not deprecated" + visibility="public" +> +</method> +<method name="getNetworkId" + return="int" + abstract="false" + native="false" + synchronized="false" + static="false" + final="false" + deprecated="not deprecated" + visibility="public" +> +</method> +<method name="getSystemId" + return="int" + abstract="false" + native="false" + synchronized="false" + static="false" + final="false" + deprecated="not deprecated" + visibility="public" +> +</method> +<method name="setCellLocationData" + return="void" + abstract="false" + native="false" + synchronized="false" + static="false" + final="false" + deprecated="not deprecated" + visibility="public" +> +<parameter name="baseStationId" type="int"> +</parameter> +<parameter name="baseStationLatitude" type="int"> +</parameter> +<parameter name="baseStationLongitude" type="int"> +</parameter> +</method> +<method name="setCellLocationData" + return="void" + abstract="false" + native="false" + synchronized="false" + static="false" + final="false" + deprecated="not deprecated" + visibility="public" +> +<parameter name="baseStationId" type="int"> +</parameter> +<parameter name="baseStationLatitude" type="int"> +</parameter> +<parameter name="baseStationLongitude" type="int"> +</parameter> +<parameter name="systemId" type="int"> +</parameter> +<parameter name="networkId" type="int"> +</parameter> +</method> +<method name="setStateInvalid" + return="void" + abstract="false" + native="false" + synchronized="false" + static="false" + final="false" + deprecated="not deprecated" + visibility="public" +> +</method> +</class> +</package> <package name="android.telephony.gsm" > <class name="GsmCellLocation" |