Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.common/src/org/eclipse/core/internal/runtime/CommonMessages.java')
-rw-r--r--bundles/org.eclipse.equinox.common/src/org/eclipse/core/internal/runtime/CommonMessages.java62
1 files changed, 0 insertions, 62 deletions
diff --git a/bundles/org.eclipse.equinox.common/src/org/eclipse/core/internal/runtime/CommonMessages.java b/bundles/org.eclipse.equinox.common/src/org/eclipse/core/internal/runtime/CommonMessages.java
deleted file mode 100644
index bbe69523c..000000000
--- a/bundles/org.eclipse.equinox.common/src/org/eclipse/core/internal/runtime/CommonMessages.java
+++ /dev/null
@@ -1,62 +0,0 @@
-/**********************************************************************
- * Copyright (c) 2005, 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 - Initial API and implementation
- **********************************************************************/
-package org.eclipse.core.internal.runtime;
-
-import org.eclipse.osgi.util.NLS;
-
-// Common runtime plugin message catalog
-public class CommonMessages extends NLS {
- private static final String BUNDLE_NAME = "org.eclipse.core.internal.runtime.commonMessages"; //$NON-NLS-1$
-
- public static String ok;
-
- // metadata
- public static String meta_couldNotCreate;
- public static String meta_instanceDataUnspecified;
- public static String meta_noDataModeSpecified;
- public static String meta_notDir;
- public static String meta_readonly;
- public static String meta_pluginProblems;
-
- // URL
- public static String url_badVariant;
- public static String url_createConnection;
- public static String url_invalidURL;
- public static String url_noaccess;
- public static String url_noOutput;
- public static String url_resolveFragment;
- public static String url_resolvePlugin;
-
- // parsing/resolve
- public static String parse_doubleSeparatorVersion;
- public static String parse_emptyPluginVersion;
- public static String parse_fourElementPluginVersion;
- public static String parse_numericMajorComponent;
- public static String parse_numericMinorComponent;
- public static String parse_numericServiceComponent;
- public static String parse_oneElementPluginVersion;
-
- public static String parse_postiveMajor;
- public static String parse_postiveMinor;
- public static String parse_postiveService;
- public static String parse_separatorEndVersion;
- public static String parse_separatorStartVersion;
-
- public static String activator_not_available;
-
- static {
- // load message values from bundle file
- reloadMessages();
- }
-
- public static void reloadMessages() {
- NLS.initializeMessages(BUNDLE_NAME, CommonMessages.class);
- }
-} \ No newline at end of file

Back to the top