Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.wst.command.env.ui/src/org/eclipse/wst/command/internal/env/ui/EnvironmentUIMessages.java')
-rw-r--r--bundles/org.eclipse.wst.command.env.ui/src/org/eclipse/wst/command/internal/env/ui/EnvironmentUIMessages.java46
1 files changed, 0 insertions, 46 deletions
diff --git a/bundles/org.eclipse.wst.command.env.ui/src/org/eclipse/wst/command/internal/env/ui/EnvironmentUIMessages.java b/bundles/org.eclipse.wst.command.env.ui/src/org/eclipse/wst/command/internal/env/ui/EnvironmentUIMessages.java
deleted file mode 100644
index 8931d841c..000000000
--- a/bundles/org.eclipse.wst.command.env.ui/src/org/eclipse/wst/command/internal/env/ui/EnvironmentUIMessages.java
+++ /dev/null
@@ -1,46 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2006 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
- * yyyymmdd bug Email and other contact information
- * -------- -------- -----------------------------------------------------------
- * 20060509 119296 pmoogk@ca.ibm.com - Peter Moogk
- *******************************************************************************/
-package org.eclipse.wst.command.internal.env.ui;
-
-import org.eclipse.osgi.util.NLS;
-
-public final class EnvironmentUIMessages extends NLS {
-
- private static final String BUNDLE_NAME = "org.eclipse.wst.command.internal.env.ui.EnvironmentUI";//$NON-NLS-1$
-
- private EnvironmentUIMessages() {
- // Do not instantiate
- }
-
- public static String BUTTON_SHOW_ALL_DIALOGS;
- public static String BUTTON_HIDE_ALL_DIALOGS;
- public static String CHECKBOX_DO_NOT_SHOW_DIALOG_AGAIN;
- public static String TOOLTIP_PPAD_PAGE;
- public static String TOOLTIP_DO_NOT_SHOW_DIALOG_AGAIN;
- public static String TOOLTIP_PPAD_BUTTON_SHOW_ALL;
- public static String TOOLTIP_PPAD_BUTTON_HIDE_ALL;
- public static String MSG_ERROR_WIZARD_ID_NOT_FOUND;
- public static String WIZARD_TITLE_ANT;
- public static String WIZARD_PAGE_TITLE_ANT;
- public static String WIZARD_PAGE_DESC_ANT;
- public static String MSG_STATUS_COPYING_ANT_FILES;
- public static String MSG_ERR_COPYING_ANT_FILES;
- public static String MSG_WARNING_FILE_EXISTS;
- public static String DIALOG_TITLE_OVERWRITE;
- public static String MSG_ERROR_OPERATION_TIMED_OUT;
-
- static {
- NLS.initializeMessages(BUNDLE_NAME, EnvironmentUIMessages.class);
- }
-}

Back to the top