blob: cb459e7166cb9566ebb8d2ffe9b2648654b3338a (
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 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"»
«IMPORT "templates"»
«EXTENSION Util»
«DEFINE FigureClass(boolean isInnerClass) FOR gmfgraph::Figure-»
«packageStatement()»
/**
* @generated
*/
public class «compilationUnitName()» extends «qualifiedClassNameGEF()» {
/**
* @generated
*/
public «compilationUnitName()»() {
«EXPAND Layout::Init("this") FOR layout-»
«EXPAND Attrs::Init("this")-»
«IF !children.typeSelect(Figure).isEmpty()-»
createContents();
}
«EXPAND Children::CreateChildren-»
«ELSE-»
}
«ENDIF-»
«additionalMethods()»
«EXPAND Extras::extraMethods»
«EXPAND Extras::localCoordinates»
«IF isInnerClass-»
}
«additionalStaticFields()»
«ELSE-»
«additionalStaticFields()»
}
«ENDIF-»
«ENDDEFINE»
«DEFINE FigureClass(boolean isInnerClass) FOR gmfgraph::PolylineConnection-»
«packageStatement()»
/**
* @generated
*/
public class «compilationUnitName()» extends «qualifiedClassNameGEF()» {
/**
* @generated
*/
public «compilationUnitName()»() {
«EXPAND Attrs::Init("this")»
«IF hasSourceDecoration()-»
setSourceDecoration(createSourceDecoration());
«ENDIF-»
«IF hasTargetDecoration()-»
setTargetDecoration(createTargetDecoration());
«ENDIF-»
}
«IF hasSourceDecoration()»
/**
* @generated
*/
private org.eclipse.draw2d.RotatableDecoration createSourceDecoration() {
«EXPAND Decoration::Instantiate("df") FOR sourceDecoration-»
return df;
}
«ENDIF-»
«IF hasTargetDecoration()»
/**
* @generated
*/
private org.eclipse.draw2d.RotatableDecoration createTargetDecoration() {
«EXPAND Decoration::Instantiate("df") FOR targetDecoration-»
return df;
}
«ENDIF-»
«additionalMethods()»
«IF isInnerClass-»
}
«additionalStaticFields()»
«ELSE-»
«additionalStaticFields()»
}
«ENDIF-»
«ENDDEFINE»
|