Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcletavernie2012-06-06 07:43:16 +0000
committercletavernie2012-06-06 07:43:16 +0000
commit4db5c039e11c188a8fae7d47a581ac89085fb97d (patch)
treeec6a6543d9cef3280ea19fa34f8db72139cac299 /plugins/uml/textedit/org.eclipse.papyrus.uml.textedit.property.xtext
parent784e574a2a35367f1b318f73980dbfd494c793aa (diff)
downloadorg.eclipse.papyrus-4db5c039e11c188a8fae7d47a581ac89085fb97d.tar.gz
org.eclipse.papyrus-4db5c039e11c188a8fae7d47a581ac89085fb97d.tar.xz
org.eclipse.papyrus-4db5c039e11c188a8fae7d47a581ac89085fb97d.zip
330176: [All Diagrams] Papyrus shall enable to display stereotype properties in a dedicated compartment.
https://bugs.eclipse.org/bugs/show_bug.cgi?id=330176
Diffstat (limited to 'plugins/uml/textedit/org.eclipse.papyrus.uml.textedit.property.xtext')
-rw-r--r--plugins/uml/textedit/org.eclipse.papyrus.uml.textedit.property.xtext/.settings/net.sf.jautodoc.prefs1
-rw-r--r--plugins/uml/textedit/org.eclipse.papyrus.uml.textedit.property.xtext/xtend-gen/org/eclipse/papyrus/uml/textedit/property/xtext/generator/UmlPropertyGenerator.java11
2 files changed, 12 insertions, 0 deletions
diff --git a/plugins/uml/textedit/org.eclipse.papyrus.uml.textedit.property.xtext/.settings/net.sf.jautodoc.prefs b/plugins/uml/textedit/org.eclipse.papyrus.uml.textedit.property.xtext/.settings/net.sf.jautodoc.prefs
index 039fc3b71ef..d5a6249d7f0 100644
--- a/plugins/uml/textedit/org.eclipse.papyrus.uml.textedit.property.xtext/.settings/net.sf.jautodoc.prefs
+++ b/plugins/uml/textedit/org.eclipse.papyrus.uml.textedit.property.xtext/.settings/net.sf.jautodoc.prefs
@@ -1,3 +1,4 @@
+#Tue Jun 29 15:29:53 CEST 2010
eclipse.preferences.version=1
header_text=/*****************************************************************************\r\n * Copyright (c) 2010 CEA LIST.\r\n *\r\n * \r\n * All rights reserved. This program and the accompanying materials\r\n * are made available under the terms of the Eclipse Public License v1.0\r\n * which accompanies this distribution, and is available at\r\n * http\://www.eclipse.org/legal/epl-v10.html\r\n *\r\n * Contributors\:\r\n * CEA LIST - Initial API and implementation\r\n *\r\n *****************************************************************************/
project_specific_settings=true
diff --git a/plugins/uml/textedit/org.eclipse.papyrus.uml.textedit.property.xtext/xtend-gen/org/eclipse/papyrus/uml/textedit/property/xtext/generator/UmlPropertyGenerator.java b/plugins/uml/textedit/org.eclipse.papyrus.uml.textedit.property.xtext/xtend-gen/org/eclipse/papyrus/uml/textedit/property/xtext/generator/UmlPropertyGenerator.java
new file mode 100644
index 00000000000..d54f941406f
--- /dev/null
+++ b/plugins/uml/textedit/org.eclipse.papyrus.uml.textedit.property.xtext/xtend-gen/org/eclipse/papyrus/uml/textedit/property/xtext/generator/UmlPropertyGenerator.java
@@ -0,0 +1,11 @@
+package org.eclipse.papyrus.uml.textedit.property.xtext.generator;
+
+import org.eclipse.emf.ecore.resource.Resource;
+import org.eclipse.xtext.generator.IFileSystemAccess;
+import org.eclipse.xtext.generator.IGenerator;
+
+@SuppressWarnings("all")
+public class UmlPropertyGenerator implements IGenerator {
+ public void doGenerate(final Resource resource, final IFileSystemAccess fsa) {
+ }
+}

Back to the top