public class ResponderCommand extends AlwaysExecutableCommand {
public void execute(ReadOnlyCommandMetadata metadata, Object context) {
UiApplication.getUiApplication();
synchronized(UiApplication.getEventLock()) {
MainScreen screen = new NfcSnepResponderScreen(Constants.VCARD_RESPONDER);
UiApplication.getUiApplication().pushScreen(screen);
}
}