Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 376fdcbfa01b34ae9288f9361587b34175ea6487 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52

/*******************************************************************************
 * Copyright (c) 2006, 2020 Borland Software Corporation, CEA LIST, Artal and others
 * 
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/ 
 * 
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors: 
 *    Artem Tikhomirov (Borland) - initial API and implementation
 *    Michael Golubev (Montages) - #386838 - migrate to Xtend2
 *    Aurelien Didier (ARTAL) - aurelien.didier51@gmail.com - Bug 569174
 *****************************************************************************/
package gmfgraph

import com.google.inject.Inject
import org.eclipse.papyrus.gmf.gmfgraph.DecorationFigure
import org.eclipse.papyrus.gmf.gmfgraph.PolygonDecoration
import org.eclipse.papyrus.gmf.gmfgraph.PolylineDecoration

/**
 * Instantiate and define attributes for DecorationFigures
 */
@com.google.inject.Singleton class Decoration {

	@Inject Runtime xptRuntime;
	@Inject Attrs xptAttrs;
	@Inject gmfgraph.attr.Decoration xptDecorationAttrs;

	def dispatch Instantiate(DecorationFigure it, String figureVarName) '''
		«xptRuntime.newInstance(it, figureVarName)»
		«xptAttrs.Init(it, figureVarName)»
	'''

	def dispatch Instantiate(PolylineDecoration it, String figureVarName) '''
		«xptRuntime.newInstance(it, figureVarName)»
		«xptDecorationAttrs.polylineAttrs(it, figureVarName)»
	'''

	/**
	 * Copy of above template for PolylineDecoration, 
	 * just because PolygonDecoration doesn't extend PolylineDecoration in draw2d and gmfgraph
	 */
	def dispatch Instantiate(PolygonDecoration it, String figureVarName) '''
		«xptRuntime.newInstance(it, figureVarName)»
		«xptDecorationAttrs.polylineAttrs(it, figureVarName)»
	'''

}

Back to the top