Index: src/org/eclipse/mtj/internal/ui/MTJUIPluginImages.java =================================================================== --- src/org/eclipse/mtj/internal/ui/MTJUIPluginImages.java (revision 1457) +++ src/org/eclipse/mtj/internal/ui/MTJUIPluginImages.java (working copy) @@ -27,12 +27,12 @@ */ public class MTJUIPluginImages { - public final static String ICONS_PATH = "icons/"; //$NON-NLS-1$ - public final static String ICONS_NEW_PATH = "icons/full/"; //$NON-NLS-1$ - private static ImageRegistry PLUGIN_REGISTRY; /* The standard icon folders */ + + public final static String ICONS_PATH = "icons/"; //$NON-NLS-1$ + public final static String ICONS_NEW_PATH = "icons/full/"; //$NON-NLS-1$ public static final String PATH_LCL = ICONS_NEW_PATH + "elcl16/"; //$NON-NLS-1$ public static final String PATH_LCL_DISABLED = ICONS_NEW_PATH + "dlcl16/"; //$NON-NLS-1$ public static final String PATH_OBJ = ICONS_NEW_PATH + "obj16/"; //$NON-NLS-1$ @@ -42,41 +42,33 @@ public static final String PATH_WIZBAN = ICONS_NEW_PATH + "wizban/"; //$NON-NLS-1$ /* Image Descriptors */ - public static final ImageDescriptor DESC_LINK_WITH_EDITOR = create( - PATH_LCL, "synced.gif"); //$NON-NLS-1$ - - public static final ImageDescriptor DESC_ALPHAB_SORT_CO = create(PATH_LCL, - "alphab_sort_co.gif"); //$NON-NLS-1$ - public static final ImageDescriptor DESC_HELP = create(PATH_LCL, "help.gif"); //$NON-NLS-1$ - public static final ImageDescriptor DESC_PAGE_OBJ = create(PATH_OBJ, - "page_obj.gif"); //$NON-NLS-1$ - + //---- PATH_LCL_DISABLED ----/// + public static final ImageDescriptor DESC_ALPHAB_SORT_CO_DISABLED = create( PATH_LCL_DISABLED, "alphab_sort_co.gif"); //$NON-NLS-1$ public static final ImageDescriptor DESC_LINK_WITH_EDITOR_DISABLED = create( PATH_LCL_DISABLED, "synced.gif"); //$NON-NLS-1$ - public static final ImageDescriptor DESC_LOCALES_OBJ = create(PATH_OBJ, - "locales_obj.gif"); //$NON-NLS-1$ - - public static final ImageDescriptor DESC_LOCALE_OBJ = create(PATH_OBJ, - "locale_obj.gif"); //$NON-NLS-1$ - - public static final ImageDescriptor DESC_LOCALE_ENTRY_OBJ = create( - PATH_OBJ, "locale_entry_obj.gif"); //$NON-NLS-1$ - - public static final ImageDescriptor DESC_LINK_OBJ = create(PATH_OBJ, - "link_obj.gif"); //$NON-NLS-1$ - public static final ImageDescriptor DESC_OVERVIEW_OBJ = create(PATH_OBJ, - "overview_obj.gif"); //$NON-NLS-1$ + //---- PATH_LCL ----/// + + public static final ImageDescriptor DESC_COLLAPSE_ALL = create(PATH_LCL, + "collapseall.gif"); //$NON-NLS-1$ + + public static final ImageDescriptor DESC_LINK_WITH_EDITOR = create( + PATH_LCL, "synced.gif"); //$NON-NLS-1$ - public static final ImageDescriptor DESC_CELLPHONE_OBJ = create(PATH_OBJ, - "cellphone_icon.gif"); //$NON-NLS-1$ + public static final ImageDescriptor DESC_ALPHAB_SORT_CO = create(PATH_LCL, + "alphab_sort_co.gif"); //$NON-NLS-1$ + public static final ImageDescriptor DESC_HELP = create(PATH_LCL, "help.gif"); //$NON-NLS-1$ + + + //---- PATH_OVR ----/// + public static final ImageDescriptor DESC_ERROR_CO = create(PATH_OVR, "error_co.gif"); //$NON-NLS-1$ @@ -113,8 +105,8 @@ public static final ImageDescriptor DESC_DOC_CO = create(PATH_OVR, "doc_co.gif"); //$NON-NLS-1$ - public static final ImageDescriptor DESC_COLLAPSE_ALL = create(PATH_LCL, - "collapseall.gif"); //$NON-NLS-1$ + + //---- PATH_WIZBAN ----/// public static final ImageDescriptor DESC_ADD_L10N = create(PATH_WIZBAN, "addL10n_wiz.png"); //$NON-NLS-1$ @@ -125,76 +117,105 @@ public static final ImageDescriptor DESC_IMPORT_DEV = create(PATH_WIZBAN, "importdev_wiz.png"); //$NON-NLS-1$ + + public static final ImageDescriptor DESC_TEMPLATE_WIZ = create(PATH_WIZBAN, + "template_wiz.png"); //$NON-NLS-1$ + + + //---- ICONS_PATH ----/// + public static final ImageDescriptor DESC_LINKTOHELP = create(ICONS_PATH, - "linkto_help.gif"); + "linkto_help.gif"); //$NON-NLS-1$ public static final ImageDescriptor DESC_DEBUG_MIDLET = create(ICONS_PATH, - "debug_exc.gif"); + "debug_exc.gif"); //$NON-NLS-1$ public static final ImageDescriptor DESC_DEBUG_JAD = create(ICONS_PATH, - "debug_exc.gif"); + "debug_exc.gif"); //$NON-NLS-1$ public static final ImageDescriptor DESC_DEBUG_OTA = create(ICONS_PATH, - "debug_exc.gif"); + "debug_exc.gif"); //$NON-NLS-1$ - public static final ImageDescriptor DESC_ANT = create(ICONS_PATH, "ant.gif"); + public static final ImageDescriptor DESC_ANT = create(ICONS_PATH, + "ant.gif"); //$NON-NLS-1$ public static final ImageDescriptor DESC_PACKAGE = create(ICONS_PATH, - "library.gif"); + "library.gif"); //$NON-NLS-1$ public static final ImageDescriptor DESC_PACKAGE_OBFUSCATED = create( - ICONS_PATH, "library.gif"); + ICONS_PATH, "library.gif"); //$NON-NLS-1$ public static final ImageDescriptor DESC_RUN_MIDLET = create(ICONS_PATH, - "run_exc.gif"); + "run_exc.gif"); //$NON-NLS-1$ public static final ImageDescriptor DESC_RUN_JAD = create(ICONS_PATH, - "run_exc.gif"); + "run_exc.gif"); //$NON-NLS-1$ public static final ImageDescriptor DESC_RUN_OTA = create(ICONS_PATH, - "run_exc.gif"); + "run_exc.gif"); //$NON-NLS-1$ public static final ImageDescriptor DESC_HORIZONTAL = create(ICONS_PATH, - "th_horizontal.gif"); + "th_horizontal.gif"); //$NON-NLS-1$ public static final ImageDescriptor DESC_VERTICAL = create(ICONS_PATH, - "th_vertical.gif"); + "th_vertical.gif"); //$NON-NLS-1$ public static final ImageDescriptor DESC_MIDLET_ICON = create(ICONS_PATH, - "class_obj_green.gif"); - - public static final ImageDescriptor DESC_LIBRARY = create(PATH_OBJ, - "library_obj.gif"); - + "class_obj_green.gif"); //$NON-NLS-1$ + public static final ImageDescriptor DESC_PREPROCESS_TEMPLATE_PROPOSAL = create( - ICONS_PATH, "preprocess_template_proposal.gif"); + ICONS_PATH, "preprocess_template_proposal.gif"); //$NON-NLS-1$ public static final ImageDescriptor DESC_PREPROCESS_SYMBOL_ASSIST = create( - ICONS_PATH, "preprocess_symbol_assist.gif"); + ICONS_PATH, "preprocess_symbol_assist.gif"); //$NON-NLS-1$ public static final ImageDescriptor DESC_PREPROCESS_DIRECTIVE_ASSIST = create( - ICONS_PATH, "preprocess_directive_assist.gif"); + ICONS_PATH, "preprocess_directive_assist.gif"); //$NON-NLS-1$ public static final ImageDescriptor DESC_NEW_PROJECT = create(ICONS_PATH, - "newjprj_wiz_M.gif"); + "newjprj_wiz_M.gif"); //$NON-NLS-1$ public static final ImageDescriptor DESC_DOWN_ARROW_OBJ = create( - ICONS_PATH, "downarrow16.gif"); + ICONS_PATH, "downarrow16.gif"); //$NON-NLS-1$ public static final ImageDescriptor DESC_UP_ARROW_OBJ = create(ICONS_PATH, - "uparrow16.gif"); - - public static final ImageDescriptor DESC_TEMPLATE_WIZ = create(PATH_WIZBAN, - "template_wiz.png"); - + "uparrow16.gif"); //$NON-NLS-1$ + + + //---- PATH_OBJ ----/// + public static final ImageDescriptor DESC_TEMPLATE_OBJ = create(PATH_OBJ, - "template_obj.png"); + "template_obj.png"); //$NON-NLS-1$ public static final ImageDescriptor DESC_PERMISSION_OBJ = create(PATH_OBJ, - "locker.png"); + "locker.png"); //$NON-NLS-1$ public static final ImageDescriptor DESC_CLASS_OBJ = create(PATH_OBJ, - "class_obj.gif"); + "class_obj.gif"); //$NON-NLS-1$ + + public static final ImageDescriptor DESC_LIBRARY = create(PATH_OBJ, + "library_obj.gif"); //$NON-NLS-1$ + + public static final ImageDescriptor DESC_LOCALES_OBJ = create(PATH_OBJ, + "locales_obj.gif"); //$NON-NLS-1$ + + public static final ImageDescriptor DESC_LOCALE_OBJ = create(PATH_OBJ, + "locale_obj.gif"); //$NON-NLS-1$ + + public static final ImageDescriptor DESC_LOCALE_ENTRY_OBJ = create( + PATH_OBJ, "locale_entry_obj.gif"); //$NON-NLS-1$ + + public static final ImageDescriptor DESC_LINK_OBJ = create(PATH_OBJ, + "link_obj.gif"); //$NON-NLS-1$ + + public static final ImageDescriptor DESC_OVERVIEW_OBJ = create(PATH_OBJ, + "overview_obj.gif"); //$NON-NLS-1$ + + public static final ImageDescriptor DESC_CELLPHONE_OBJ = create(PATH_OBJ, + "cellphone_icon.gif"); //$NON-NLS-1$ + + public static final ImageDescriptor DESC_PAGE_OBJ = create(PATH_OBJ, + "page_obj.gif"); //$NON-NLS-1$ /** * @param key Index: icons/full/wizban/AddL10nLocale_wiz.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: icons/full/wizban/addlibrary_wiz.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: icons/full/ovr16/run_co.gif =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: icons/javadoc_location_attrib.gif =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: icons/profile_obj.gif =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: icons/source_attach_attrib.gif =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream