J2ME中文教程 7 开发无线网络应用程序[50]

[入库:2006年2月23日] [更新:2007年3月24日]

本文简介:

        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();

本文关键:J2ME中文教程 7 开发无线网络应用程序
 

本站最佳浏览方式为 分辨率 1024x768 IE 6.0(或更高版本的 IE浏览器)

go top