1 /*
2 * Created on 31-Mar-2005
3 *
4 */
5 package ubc.midp.mobilephoto.core.util;
6
7 /**
8 * @author tyoung
9 *
10 * This class contains all constants used by the MobilePhoto application.
11 * It is the central location to store any static string data.
12 */
13 public class Constants {
14
15 public static final String ALBUMLIST_SCREEN = "AlbumListScreen";
16 public static final String IMAGE_SCREEN = "ImageScreen";
17 public static final String IMAGELIST_SCREEN = "ImageListScreen";
18
19 public static final String NEWALBUM_SCREEN = "NewLabelScreen";
20 public static final String CONFIRMDELETEALBUM_SCREEN = "ConfirmDeleteAlbumScreen";
21 public static final String ADDPHOTOTOALBUM_SCREEN = "AddPhotoToAlbum";
22
23 /** Screen Size**/
24 public static final int SCREEN_WIDTH = 176;
25 public static final int SCREEN_HEIGHT = 205;
26
27 }
|