Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/facet/org.eclipse.papyrus.emf.facet.infra.facet.editor/src/org/eclipse/emf/facet/infra/facet/editor/Messages.java')
-rw-r--r--plugins/facet/org.eclipse.papyrus.emf.facet.infra.facet.editor/src/org/eclipse/emf/facet/infra/facet/editor/Messages.java30
1 files changed, 30 insertions, 0 deletions
diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.infra.facet.editor/src/org/eclipse/emf/facet/infra/facet/editor/Messages.java b/plugins/facet/org.eclipse.papyrus.emf.facet.infra.facet.editor/src/org/eclipse/emf/facet/infra/facet/editor/Messages.java
new file mode 100644
index 00000000000..e19bfcd8c37
--- /dev/null
+++ b/plugins/facet/org.eclipse.papyrus.emf.facet.infra.facet.editor/src/org/eclipse/emf/facet/infra/facet/editor/Messages.java
@@ -0,0 +1,30 @@
+/*******************************************************************************
+ * Copyright (c) 2010 Mia-Software.
+ * 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:
+ * Gregoire DUPE (Mia-Software) - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.emf.facet.infra.facet.editor;
+
+import org.eclipse.osgi.util.NLS;
+
+public class Messages extends NLS {
+ private static final String BUNDLE_NAME = "org.eclipse.emf.facet.infra.facet.editor.messages"; //$NON-NLS-1$
+ public static String FacetEditor_Edition;
+ public static String FacetEditor_refreshErrorMarkersJobName;
+ public static String FacetModelWizard_facetInNonEmfFacetProject;
+ public static String LoadMetaModelResourceAction_LoadMetamodelResource;
+ public static String LoadEmfFacetResourceAction_0;
+ static {
+ // initialize resource bundle
+ NLS.initializeMessages(BUNDLE_NAME, Messages.class);
+ }
+
+ private Messages() {
+ // cannot be instantiated
+ }
+}

Back to the top