Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/Moka/org.eclipse.papyrus.moka.fuml/src/org/eclipse/papyrus/moka/fuml/presentation/MokaVariable_for_fUML.java')
-rw-r--r--sandbox/Moka/org.eclipse.papyrus.moka.fuml/src/org/eclipse/papyrus/moka/fuml/presentation/MokaVariable_for_fUML.java26
1 files changed, 26 insertions, 0 deletions
diff --git a/sandbox/Moka/org.eclipse.papyrus.moka.fuml/src/org/eclipse/papyrus/moka/fuml/presentation/MokaVariable_for_fUML.java b/sandbox/Moka/org.eclipse.papyrus.moka.fuml/src/org/eclipse/papyrus/moka/fuml/presentation/MokaVariable_for_fUML.java
new file mode 100644
index 00000000000..02aa78930e2
--- /dev/null
+++ b/sandbox/Moka/org.eclipse.papyrus.moka.fuml/src/org/eclipse/papyrus/moka/fuml/presentation/MokaVariable_for_fUML.java
@@ -0,0 +1,26 @@
+package org.eclipse.papyrus.moka.fuml.presentation;
+
+import org.eclipse.papyrus.moka.debug.MokaVariable;
+import org.eclipse.papyrus.moka.fuml.Semantics.Loci.LociL1.Locus;
+import org.eclipse.papyrus.moka.ui.presentation.IPresentation;
+import org.eclipse.swt.graphics.Image;
+
+public abstract class MokaVariable_for_fUML extends MokaVariable implements IPresentation {
+
+ public MokaVariable_for_fUML() {
+ super(Locus.getDebugTarget());
+ }
+
+ public String getLabel() {
+ // Not used
+ return "";
+ }
+
+ public String getDetails() {
+ // Not used
+ return "";
+ }
+
+ public abstract Image getImage() ;
+
+}

Back to the top