Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.metatype/src/org/eclipse/equinox/metatype/MetaTypeMsg.java')
-rw-r--r--bundles/org.eclipse.equinox.metatype/src/org/eclipse/equinox/metatype/MetaTypeMsg.java45
1 files changed, 0 insertions, 45 deletions
diff --git a/bundles/org.eclipse.equinox.metatype/src/org/eclipse/equinox/metatype/MetaTypeMsg.java b/bundles/org.eclipse.equinox.metatype/src/org/eclipse/equinox/metatype/MetaTypeMsg.java
deleted file mode 100644
index b3ffee63a..000000000
--- a/bundles/org.eclipse.equinox.metatype/src/org/eclipse/equinox/metatype/MetaTypeMsg.java
+++ /dev/null
@@ -1,45 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2005 IBM Corporation.
- * 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.equinox.metatype;
-
-import org.eclipse.osgi.util.NLS;
-
-public class MetaTypeMsg extends NLS {
- private static final String BUNDLE_NAME = "org.eclipse.equinox.metatype.ExternalMessages"; //$NON-NLS-1$
-
- public static String SERVICE_DESCRIPTION;
-
- public static String UNEXPECTED_ELEMENT;
- public static String UNEXPECTED_TEXT;
- public static String MISSING_ATTRIBUTE;
- public static String OCD_ID_NOT_FOUND;
- public static String NULL_DEFAULTS;
- public static String MISSING_ELEMENT;
-
- public static String EXCEPTION_MESSAGE;
- public static String NULL_IS_INVALID;
- public static String VALUE_OUT_OF_RANGE;
- public static String VALUE_OUT_OF_OPTION;
- public static String TOO_MANY_VALUES;
- public static String NULL_OPTIONS;
- public static String INCONSISTENT_OPTIONS;
- public static String INVALID_OPTIONS;
- public static String INVALID_DEFAULTS;
-
- public static String METADATA_NOT_FOUND;
- public static String ASK_INVALID_LOCALE;
- public static String TOKENIZER_GOT_INVALID_DATA;
-
- static {
- // initialize resource bundles
- NLS.initializeMessages(BUNDLE_NAME, MetaTypeMsg.class);
- }
-} \ No newline at end of file

Back to the top