package org.safermobile; import net.rim.device.api.ui.container.MainScreen; /** * A class extending the MainScreen class, which provides default standard * behavior for BlackBerry GUI applications. */ public final class ITCScreen extends MainScreen { /** * Creates a new ITCScreen object */ public ITCScreen() { // Set the displayed title of the screen setTitle("In The Clear"); } }