isPaused = false;
}
public void pauseApp()
{
isPaused = true;
}
public void destroyApp(boolean unconditional)
{
}
public void commandAction(Command c, Displayable s)
{
if (c == exitCommand)
{
destroyApp(true);
notifyDestroyed();
} else if (c == startCommand)
{
String name = cg.getString(cg.getSelectedIndex());
if (name.equals(SERVER))
{
Server server = new Server(this);
server.start();
} else
{
Client client = new Client(this);
client.start();