Lines Matching refs:onComplete

87      * When the operation is complete, onComplete will be sent to its
90 * onComplete.obj will be an AsyncResult
92 * ((AsyncResult)onComplete.obj).exception == null on success
93 * ((AsyncResult)onComplete.obj).exception != null on fail
96 * ((AsyncResult)onComplete.obj).exception != null
97 * && ((AsyncResult)onComplete.obj).exception
99 * && ((CommandException)(((AsyncResult)onComplete.obj).exception))
102 public void supplyPin(String pin, Message onComplete) {
103 sendMessageWithCardAbsentException(onComplete);
109 public void supplyPuk(String puk, String newPin, Message onComplete) {
110 sendMessageWithCardAbsentException(onComplete);
116 public void supplyPin2(String pin2, Message onComplete) {
117 sendMessageWithCardAbsentException(onComplete);
123 public void supplyPuk2(String puk2, String newPin2, Message onComplete) {
124 sendMessageWithCardAbsentException(onComplete);
130 public void supplyNetworkDepersonalization(String pin, Message onComplete) {
131 sendMessageWithCardAbsentException(onComplete);
158 * When the operation is complete, onComplete will be sent to its handler
162 * @param onComplete
163 * onComplete.obj will be an AsyncResult
164 * ((AsyncResult)onComplete.obj).exception == null on success
165 * ((AsyncResult)onComplete.obj).exception != null on fail
168 String password, Message onComplete) {
169 sendMessageWithCardAbsentException(onComplete);
174 * When the operation is complete, onComplete will be sent to its handler
178 * @param onComplete
179 * onComplete.obj will be an AsyncResult
180 * ((AsyncResult)onComplete.obj).exception == null on success
181 * ((AsyncResult)onComplete.obj).exception != null on fail
184 String password, Message onComplete) {
185 sendMessageWithCardAbsentException(onComplete);
190 * When the operation is complete, onComplete will be sent to its handler
194 * @param onComplete
195 * onComplete.obj will be an AsyncResult
196 * ((AsyncResult)onComplete.obj).exception == null on success
197 * ((AsyncResult)onComplete.obj).exception != null on fail
200 Message onComplete) {
201 sendMessageWithCardAbsentException(onComplete);
206 * When the operation is complete, onComplete will be sent to its handler
210 * @param onComplete
211 * onComplete.obj will be an AsyncResult
212 * ((AsyncResult)onComplete.obj).exception == null on success
213 * ((AsyncResult)onComplete.obj).exception != null on fail
216 Message onComplete) {
217 sendMessageWithCardAbsentException(onComplete);
269 private void sendMessageWithCardAbsentException(Message onComplete) {
270 AsyncResult ret = AsyncResult.forMessage(onComplete);
272 onComplete.sendToTarget();