use of nfc.sample.virtual.target.ui.ResponseTextScreen in project Samples-for-Java by blackberry.
the class ResponseTextCommand method execute.
public void execute(ReadOnlyCommandMetadata metadata, Object context) {
NfcVirtTargScreen screen = (NfcVirtTargScreen) context;
synchronized (UiApplication.getUiApplication().getEventLock()) {
MainScreen text_screen = new ResponseTextScreen(screen);
UiApplication.getUiApplication().pushScreen(text_screen);
}
}
Aggregations