blob: 59d31bbcd2984edc916280dbaa42dfb7400e9258 (
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
53
54
55
|
/*
* Copyright (c) 2006 Borland Software Corporation
*
* 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:
* Artem Tikhomirov (Borland) - initial API and implementation
*/
«IMPORT "http://www.eclipse.org/gmf/2005/GraphicalDefinition"»
«IMPORT "http://www.eclipse.org/emf/2002/Ecore"»
«EXTENSION Util»
«DEFINE Init(EString figureVarName) FOR gmfgraph::Border-»
«figureVarName».setBorder(«EXPAND border(figureVarName)»);
«ENDDEFINE»
«DEFINE border(EString figureVarName) FOR gmfgraph::Border»
«ERROR "This is an abstract definition"»
«ENDDEFINE»
«DEFINE border(EString figureVarName) FOR gmfgraph::LineBorder-»
new org.eclipse.draw2d.LineBorder(«IF null == color»null«ELSE»«EXPAND attr::Figure::color(figureVarName + "_BORDER") FOR color»«ENDIF», «EXPAND MapMode::map FOR width»)
«ENDDEFINE»
«DEFINE border(EString figureVarName) FOR gmfgraph::CompoundBorder-»
new org.eclipse.draw2d.CompoundBorder(«IF null == outer»null«ELSE»«EXPAND border(figureVarName) FOR outer»«ENDIF», «IF null == inner»null«ELSE»«EXPAND border(figureVarName) FOR inner»«ENDIF»)
«ENDDEFINE»
«DEFINE border(EString figureVarName) FOR gmfgraph::MarginBorder-»
new org.eclipse.draw2d.MarginBorder(«EXPAND MapMode::map FOR insets»)
«ENDDEFINE»
«DEFINE border(EString figureVarName) FOR gmfgraph::CustomBorder-»
«LET methodName(figureVarName) AS methodName-»
«methodName»()
«EXPAND customBorderMethod(methodName)-»
«ENDLET-»
«ENDDEFINE»
«DEFINE customBorderMethod(String methodName) FOR gmfgraph::CustomBorder-»
«FILE "" additionalMethods-»
/**
* @generated
*/
private org.eclipse.draw2d.Border «methodName»() {
«qualifiedClassNameGEF()» result = new «qualifiedClassNameGEF()»();
«EXPAND attr::CustomClass::Init("result")»
return result;
}
«ENDFILE-»
«ENDDEFINE»
|