blob: bb92410f4aa047604792c5143b9e07a8685c048a (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
/*
* Copyright (c) 2006, 2007 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/2006/GraphicalDefinition'»
«IMPORT 'http://www.eclipse.org/emf/2002/Ecore'»
«EXTENSION Util»
«DEFINE ClassBody(cuName : String) FOR gmfgraph::Figure»«ERROR 'abstract ClassBody(Figure)'»«ENDDEFINE»
«DEFINE ClassBody(cuName : String) FOR gmfgraph::FigureRef-»
«EXPAND ClassBody(cuName) FOR figure-»
«ENDDEFINE»
«DEFINE ClassBody(cuName : String) FOR gmfgraph::RealFigure-»
/**
* @generated
*/
public «cuName»() {
«clearBorders()-»
«EXPAND Layout::Init('this') FOR layout-»
«EXPAND Attrs::Init('this')-»
«IF not (children)[gmfgraph::Figure]->isEmpty()-»
createContents();
}
«EXPAND Children::CreateChildren-»
«EXPAND Border::InitMethods»
«ELSE-»
}
«ENDIF-»
«EXPAND Extras::extraMethods»
«EXPAND Extras::localCoordinates»
«EXPAND additions-»
«ENDDEFINE»
«DEFINE ClassBody(cuName : String) FOR gmfgraph::PolylineConnection-»
/**
* @generated
*/
public «cuName»() {
«EXPAND Attrs::Init('this')»
«IF not (children)[gmfgraph::Label]->isEmpty()-»
createContents();
«ENDIF-»
«IF hasSourceDecoration(self)-»
setSourceDecoration(createSourceDecoration());
«ENDIF-»
«IF hasTargetDecoration(self)-»
setTargetDecoration(createTargetDecoration());
«ENDIF-»
}
«IF not (children)[gmfgraph::Label]->isEmpty()»
«REM»
Copy of Children::CreateChildren with temp workaround to generate child figures for labels only.
Though this is temp workaround for https://bugs.eclipse.org/bugs/show_bug.cgi?id=193180, I'm not sure
what's the right approach with e.g. decoration as child of a link.
«ENDREM»
/**
* @generated
*/
private void createContents(){
«EXPAND Children::instantiate(0, self, 'this') FOREACH (children)[gmfgraph::Label]»
}
«ENDIF-»
«IF hasSourceDecoration(self)»
/**
* @generated
*/
private org.eclipse.draw2d.RotatableDecoration createSourceDecoration() {
«EXPAND Decoration::Instantiate('df') FOR sourceDecoration-»
return df;
}
«ENDIF-»
«IF hasTargetDecoration(self)»
/**
* @generated
*/
private org.eclipse.draw2d.RotatableDecoration createTargetDecoration() {
«EXPAND Decoration::Instantiate('df') FOR targetDecoration-»
return df;
}
«ENDIF-»
«EXPAND additions-»
«ENDDEFINE»
«REM»Our regular way to add smth inside generated class body«ENDREM»
«DEFINE additions FOR gmfgraph::Figure»«ENDDEFINE»
|