KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > internal > wizards > newresource > ResourceMessages


1 /*******************************************************************************
2  * Copyright (c) 2005, 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 - Initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.ui.internal.wizards.newresource;
12
13 import org.eclipse.osgi.util.NLS;
14
15 public class ResourceMessages extends NLS {
16     private static final String JavaDoc BUNDLE_NAME = "org.eclipse.ui.internal.wizards.newresource.messages";//$NON-NLS-1$
17

18     // ==============================================================================
19
// New Resource Wizards
20
// ==============================================================================
21
public static String JavaDoc FileResource_shellTitle;
22     public static String JavaDoc FileResource_pageTitle;
23     public static String JavaDoc FileResource_description;
24     public static String JavaDoc FileResource_errorMessage;
25
26     public static String JavaDoc NewFolder_title;
27     public static String JavaDoc NewFolder_text;
28
29     public static String JavaDoc NewProject_windowTitle;
30     public static String JavaDoc NewProject_title;
31     public static String JavaDoc NewProject_description;
32     public static String JavaDoc NewProject_referenceTitle;
33     public static String JavaDoc NewProject_referenceDescription;
34     public static String JavaDoc NewProject_errorOpeningWindow;
35     public static String JavaDoc NewProject_errorMessage;
36     public static String JavaDoc NewProject_internalError;
37     public static String JavaDoc NewProject_caseVariantExistsError;
38     public static String JavaDoc NewProject_perspSwitchTitle;
39     /**
40      * Combines a perspective name and text for introducing a perspective switch
41      */

42     public static String JavaDoc NewProject_perspSwitchMessage;
43     /**
44      * Combines a perspective name and description with text for introducing
45      * a perspective switch
46      */

47     public static String JavaDoc NewProject_perspSwitchMessageWithDesc;
48
49     static {
50         // load message values from bundle file
51
NLS.initializeMessages(BUNDLE_NAME, ResourceMessages.class);
52     }
53 }
54
Popular Tags