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

SQL Anywhere 11.0.1 (日本語) » Ultra Light J » Ultra Light J の使用 » チュートリアル:BlackBerry アプリケーションの構築 » チュートリアルのコード・リスト

 

Application.java

/*
 * Application.java
 *
 * c <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() );
    }
}