KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > internal > navigator > resources > plugin > WorkbenchNavigatorMessages


1 /*******************************************************************************
2  * Copyright (c) 2003, 2006 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.ui.internal.navigator.resources.plugin;
12
13 import org.eclipse.osgi.util.NLS;
14
15 /**
16  * Utility class which helps managing messages
17  *
18  *
19  * @since 3.2
20  */

21 public class WorkbenchNavigatorMessages extends NLS {
22     /** The bundle properties file */
23     public static final String JavaDoc BUNDLE_NAME = "org.eclipse.ui.internal.navigator.resources.plugin.messages"; //$NON-NLS-1$
24

25     /** Message key. */
26     public static String JavaDoc PortingActionProvider_ImportResourcesMenu_label;
27
28     /** Message key. */
29     public static String JavaDoc PortingActionProvider_ExportResourcesMenu_label;
30
31     /** Message key. */
32     public static String JavaDoc NewActionProvider_NewMenu_label;
33
34     /** Message key. */
35     public static String JavaDoc OpenActionProvider_OpenWithMenu_label;
36
37     /** Message key. */
38     public static String JavaDoc DropAdapter_title;
39
40     /** Message key. */
41     public static String JavaDoc DropAdapter_problemImporting;
42
43     /** Message key. */
44     public static String JavaDoc DropAdapter_problemsMoving;
45
46     /** Message key. */
47     public static String JavaDoc DropAdapter_targetMustBeResource;
48
49     /** Message key. */
50     public static String JavaDoc DropAdapter_canNotDropIntoClosedProject;
51
52     /** Message key. */
53     public static String JavaDoc DropAdapter_resourcesCanNotBeSiblings;
54
55     /** Message key. */
56     public static String JavaDoc DropAdapter_dropOperationErrorOther;
57     
58
59     /** Message key. */
60     public static String JavaDoc MoveResourceAction_title;
61
62     /** Message key. */
63     public static String JavaDoc MoveResourceAction_checkMoveMessage;
64
65     public static String JavaDoc WorkingSetRootModeActionGroup_Top_Level_Element_;
66
67     public static String JavaDoc WorkingSetRootModeActionGroup_Project_;
68
69     public static String JavaDoc WorkingSetRootModeActionGroup_Working_Set_;
70
71     static {
72         initializeMessages(BUNDLE_NAME, WorkbenchNavigatorMessages.class);
73     }
74 }
75
Popular Tags