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