Advertisement
jfrubiom

NewsApp.java

Sep 17th, 2011
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.46 KB | None | 0 0
  1. package com.newsapp;
  2.  
  3. import net.rim.device.api.ui.UiApplication;
  4.  
  5. public class NewsApp extends UiApplication
  6. {
  7.     public static void main(String[] args)
  8.     {
  9.  
  10.         NewsApp theApp = new NewsApp();      
  11.         theApp.enterEventDispatcher();
  12.     }
  13.  
  14.     /**
  15.      * Creates a new NewsApp object
  16.      */
  17.     public NewsApp()
  18.     {        
  19.         // Push a screen onto the UI stack for rendering.
  20.         pushScreen(new ScreenApp());
  21.     }    
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement