public class ResponseTextCommand extends AlwaysExecutableCommand {
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);
}
}