diff options
| author | John Wang <johnwang@google.com> | 2009-09-25 14:32:18 -0700 |
|---|---|---|
| committer | John Wang <johnwang@google.com> | 2009-09-25 14:50:26 -0700 |
| commit | fb2b04b7bc505f5e600e360a9de6f63e16c21bf9 (patch) | |
| tree | 69c665e62ca0222356801d2e433c16ea562ca0fd /telephony | |
| parent | 0cb901c4be24dc1a7bba729afca0bd12ed04ef6c (diff) | |
| download | frameworks_base-fb2b04b7bc505f5e600e360a9de6f63e16c21bf9.zip frameworks_base-fb2b04b7bc505f5e600e360a9de6f63e16c21bf9.tar.gz frameworks_base-fb2b04b7bc505f5e600e360a9de6f63e16c21bf9.tar.bz2 | |
Unhide NETWORK_TYPE_XXX.
Make NETWORK_TYPE_HSDPA etc. unhide in TelephonyManager.
Diffstat (limited to 'telephony')
| -rw-r--r-- | telephony/java/android/telephony/TelephonyManager.java | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/telephony/java/android/telephony/TelephonyManager.java b/telephony/java/android/telephony/TelephonyManager.java index fb96b2a..a53b157 100644 --- a/telephony/java/android/telephony/TelephonyManager.java +++ b/telephony/java/android/telephony/TelephonyManager.java @@ -373,24 +373,18 @@ public class TelephonyManager { /** Current network is UMTS */ public static final int NETWORK_TYPE_UMTS = 3; /** Current network is CDMA: Either IS95A or IS95B*/ - /** @hide */ public static final int NETWORK_TYPE_CDMA = 4; - /** Current network is EVDO revision 0 or revision A*/ - /** @hide */ + /** Current network is EVDO revision 0*/ public static final int NETWORK_TYPE_EVDO_0 = 5; - /** @hide */ + /** Current network is EVDO revision A*/ public static final int NETWORK_TYPE_EVDO_A = 6; /** Current network is 1xRTT*/ - /** @hide */ public static final int NETWORK_TYPE_1xRTT = 7; /** Current network is HSDPA */ - /** @hide */ public static final int NETWORK_TYPE_HSDPA = 8; /** Current network is HSUPA */ - /** @hide */ public static final int NETWORK_TYPE_HSUPA = 9; /** Current network is HSPA */ - /** @hide */ public static final int NETWORK_TYPE_HSPA = 10; /** |
