Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcletavernie2011-11-09 16:05:21 +0000
committercletavernie2011-11-09 16:05:21 +0000
commitf860ac488f517747a1d69c92be2e6541d03e1afc (patch)
tree57e584df5c0eff5f52fac81d4f774c237c0a0ae3 /plugins/infra/services/org.eclipse.papyrus.infra.services.edit/src/org/eclipse/papyrus/infra/services/edit/messages/Messages.java
parentbe2557ad19fcc35afd6af6932cd0dece13d29c4b (diff)
downloadorg.eclipse.papyrus-f860ac488f517747a1d69c92be2e6541d03e1afc.tar.gz
org.eclipse.papyrus-f860ac488f517747a1d69c92be2e6541d03e1afc.tar.xz
org.eclipse.papyrus-f860ac488f517747a1d69c92be2e6541d03e1afc.zip
362162: [Architecture - Refactoring] The plug-ins should be renamed to match their layer's qualified name
https://bugs.eclipse.org/bugs/show_bug.cgi?id=362162
Diffstat (limited to 'plugins/infra/services/org.eclipse.papyrus.infra.services.edit/src/org/eclipse/papyrus/infra/services/edit/messages/Messages.java')
-rw-r--r--plugins/infra/services/org.eclipse.papyrus.infra.services.edit/src/org/eclipse/papyrus/infra/services/edit/messages/Messages.java41
1 files changed, 41 insertions, 0 deletions
diff --git a/plugins/infra/services/org.eclipse.papyrus.infra.services.edit/src/org/eclipse/papyrus/infra/services/edit/messages/Messages.java b/plugins/infra/services/org.eclipse.papyrus.infra.services.edit/src/org/eclipse/papyrus/infra/services/edit/messages/Messages.java
new file mode 100644
index 00000000000..001c7af2596
--- /dev/null
+++ b/plugins/infra/services/org.eclipse.papyrus.infra.services.edit/src/org/eclipse/papyrus/infra/services/edit/messages/Messages.java
@@ -0,0 +1,41 @@
+/*****************************************************************************
+ * Copyright (c) 2011 CEA LIST.
+ *
+ * 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:
+ *
+ * CEA LIST - Initial API and implementation
+ *
+ *****************************************************************************/
+package org.eclipse.papyrus.infra.services.edit.messages;
+
+import org.eclipse.osgi.util.NLS;
+
+/**
+ * Internationalization messages class.
+ */
+public class Messages extends NLS {
+
+ public static String ElementTypeValidator_NoSelection;
+ public static String ElementTypeValidator_ValidSelection;
+ public static String ElementTypeValidator_InvalidSelection;
+
+ public static String TypeContext_ContextNotFound;
+
+ public static String ElementEditServiceProvider_UnexpectedParameterType;
+ public static String ElementEditServiceProvider_NoIElementTypeFound;
+
+ public static String ElementEditServiceUtils_UnableToFindElementType;
+ public static String ElementEditServiceUtils_UnableToFindServiceProvider;
+
+ static {
+ NLS.initializeMessages("messages", Messages.class); //$NON-NLS-1$
+ }
+
+ private Messages() {
+ }
+}

Back to the top