package org.safermobile; //#ifndef RIM /* //#endif import net.rim.device.api.ui.UiApplication; public class InTheClear extends UiApplication { public static void main(String[] args) { // Create a new instance of the application and make the currently // running thread the application's event dispatch thread. InTheClear theApp = new InTheClear(); theApp.enterEventDispatcher(); } public InTheClear() { // Push a screen onto the UI stack for rendering. pushScreen(new ITCScreen()); } } //#ifndef RIM */ //#endif