Skip to main content
summaryrefslogtreecommitdiffstats
blob: 02aa78930e2f120e6ad0d5c8d1857e47edb8d3a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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