Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.1 (中文) » UltraLiteJ » 使用 UltraLiteJ » 教程:构建 BlackBerry 应用程序 » 教程的代码列表

 

Application.java

/*
 * Application.java
 *
 * ? <your company here>, 2003-2005
 * Confidential and proprietary.
 */

package myapp;


/**
 * 
 */
class Application extends net.rim.device.api.ui.UiApplication {
    
    public static void main( String[] args )
    {
        Application instance = new Application();
        instance.enterEventDispatcher();
    }
    
    Application() { 
        pushScreen( new HomeScreen() );
    }
}