Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkchan2005-11-08 17:57:21 +0000
committerkchan2005-11-08 17:57:21 +0000
commitedc326b2f67e531f5941bc788c9483fdc84e9f85 (patch)
treefea117b92b212cb3375f91882434c8ae560c1669 /bundles/org.eclipse.jst.ws.ui/src/org/eclipse/jst/ws/internal/ui/WSUIPluginMessages.java
parent58dfefbaf2d55fa043952fa8fdff96b5ee8f2619 (diff)
downloadwebtools.webservices-edc326b2f67e531f5941bc788c9483fdc84e9f85.tar.gz
webtools.webservices-edc326b2f67e531f5941bc788c9483fdc84e9f85.tar.xz
webtools.webservices-edc326b2f67e531f5941bc788c9483fdc84e9f85.zip
[93111] Convert to NLS message class.
Diffstat (limited to 'bundles/org.eclipse.jst.ws.ui/src/org/eclipse/jst/ws/internal/ui/WSUIPluginMessages.java')
-rw-r--r--bundles/org.eclipse.jst.ws.ui/src/org/eclipse/jst/ws/internal/ui/WSUIPluginMessages.java67
1 files changed, 67 insertions, 0 deletions
diff --git a/bundles/org.eclipse.jst.ws.ui/src/org/eclipse/jst/ws/internal/ui/WSUIPluginMessages.java b/bundles/org.eclipse.jst.ws.ui/src/org/eclipse/jst/ws/internal/ui/WSUIPluginMessages.java
new file mode 100644
index 000000000..7f57583f9
--- /dev/null
+++ b/bundles/org.eclipse.jst.ws.ui/src/org/eclipse/jst/ws/internal/ui/WSUIPluginMessages.java
@@ -0,0 +1,67 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2005 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.jst.ws.internal.ui;
+
+import org.eclipse.osgi.util.NLS;
+
+public final class WSUIPluginMessages extends NLS {
+
+ private static final String BUNDLE_NAME = "org.eclipse.jst.ws.internal.ui.WSUIPlugin";//$NON-NLS-1$
+
+ private WSUIPluginMessages() {
+ // Do not instantiate
+ }
+
+ public static String PLUGIN_NAME;
+ public static String PLUGIN_VENDOR;
+ public static String PLUGIN_DESC;
+ public static String PLUGIN_NEW_CATEGORY_NAME_WS;
+ public static String PREFERENCE_CATEGORY_RESOURCE_MANAGEMENT;
+ public static String PREFERENCE_CATEGORY_CODE_GENERATION;
+ public static String PREFERENCE_CATEGORY_SCENARIO_DEFAULTS;
+ public static String PREFERENCE_CATEGORY_PROJECT_TOPOLOGY;
+ public static String PREFERENCE_CATEGORY_DRIVER_JARS;
+ public static String BUTTON_LAUNCH_SAMPLE;
+ public static String LABEL_MOVE_UP;
+ public static String LABEL_MOVE_DOWN;
+ public static String TOOLTIP_PPSD_PAGE;
+ public static String TOOLTIP_PPSD_CHECKBOX_LAUNCH_SAMPLE;
+ public static String TOOLTIP_CLIENT_TYPE_TABLE_VIEWER;
+ public static String TOOLTIP_MOVE_UP;
+ public static String TOOLTIP_MOVE_DOWN;
+ public static String TOOLTIP_PPRM_PAGE;
+ public static String TOOLTIP_PPRM_CHECKBOX_OVERWRITE_FILES;
+ public static String TOOLTIP_PPRM_CHECKBOX_CREATE_FOLDERS;
+ public static String TOOLTIP_PPRM_CHECKBOX_CHECK_OUT;
+ public static String BUTTON_CREATE_FOLDERS;
+ public static String BUTTON_OVERWRITE_FILES;
+ public static String BUTTON_CHECKOUT_FILES;
+ public static String ISTATUS_WITHOUT_EXCEPTION;
+ public static String ISTATUS_WITH_EXCEPTION;
+ public static String MSG_INFO_SAVED_STATUS;
+ public static String DIALOG_TITLE_CLASS_BROWSE;
+ public static String DIALOG_TITLE_INTERFACE_BROWSE;
+ public static String LABEL_SAMPLE_TYPES;
+ public static String DIALOG_TITLE_RESOURCE_BROWSE;
+ public static String LABEL_RESOURCE_FILTER;
+ public static String TOOLTIP_DRES_COMBO_RESOURCE_TYPE;
+ public static String TOOLTIP_DRES_TREE_RESOURCE;
+ public static String TOOLTIP_PTPP_PAGE;
+ public static String TOOLTIP_ENABLE_TWO_EARS;
+ public static String LABEL_ENABLE_TWO_EARS;
+ public static String LABEL_CLIENT_TYPE_NAME;
+ public static String DIALOG_TITLE_RESOURCE_BROWSER;
+ public static String TOOLTIP_RESOURCE_TREE;
+
+ static {
+ NLS.initializeMessages(BUNDLE_NAME, WSUIPluginMessages.class);
+ }
+} \ No newline at end of file

Back to the top