| 
 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectcom.nokia.mid.network.SIMState
public final class SIMState
SIMState provides SIM change notification to client which implements SIMStateListener interface.
Copyright (c) 2012 Nokia Mobile Phones
Code Snippet 1:
 
 // This is a sample code to get the state of the sim card in first slot
     SIMState.getState(0);
 
 
 
 Code Snippet 2:
 
 
 
 // This is a sample code to subscribe state change event of sim card
     try{
             SIMState.subscribeListener(this);
         } catch (Exception e) {
         }
 
 
 Code Snippet 3:
 
 
 // This is a sample code to implement a SIMStateListener in a class which implements this interface
 public void SIMStateChanged(int simIndex, int state) {
     form.append("recevie sim card state on slot " + simIndex + " state is " + state);
 }
 
 
| Field Summary | |
|---|---|
| static int | SIM_STATE_NO_SIMConstant for SIM cannot be found from phone. | 
| static int | SIM_STATE_NOT_READYConstant for SIM can be found from phone but it is not ready. | 
| static int | SIM_STATE_READYConstant for SIM can be found from phone and it is ready. | 
| Method Summary | |
|---|---|
| static int | getState(int simIndex)get sim state. | 
| static void | subscribeListener(SIMStateListener listener)Subscribe SIM state listener. | 
| static void | unSubscribeListener(SIMStateListener listener)unSubscribe SIM state listener. | 
| Methods inherited from class java.lang.Object | 
|---|
| equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
| Field Detail | 
|---|
public static final int SIM_STATE_READY
Constant for SIM can be found from phone and it is ready.
SIM_STATE_READY has the value 0x01.
public static final int SIM_STATE_NOT_READY
Constant for SIM can be found from phone but it is not ready.
SIM_STATE_NOTREADY has the value 0x02.
public static final int SIM_STATE_NO_SIM
Constant for SIM cannot be found from phone.
SIM_STATE_NOSIM has the value 0x03.
| Method Detail | 
|---|
public static void subscribeListener(SIMStateListener listener)
listener - the object that will receive the SIM state event.public static void unSubscribeListener(SIMStateListener listener)
listener - the object that is receiving the SIM state event.
public static int getState(int simIndex)
                    throws java.lang.IllegalArgumentException
simIndex - the index of sim card which state is queried. 0 for sim card in first slot and 1 for sim card in second slot
java.lang.IllegalArgumentException - If simIndex is not valid.| 
 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||