blob: e0de76eb298684d04a28a916ccb860841a1661bb (
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
|
/*
* 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/2006/GraphicalDefinition'»
«IMPORT 'http://www.eclipse.org/emf/2002/Ecore'»
«EXTENSION Util»
«EXTENSION NativeUtil»
«DEFINE Init(instanceVarName : String) FOR gmfgraph::CustomClass»
«EXPAND customAttribute(instanceVarName) FOREACH attributes»
«ENDDEFINE»
«DEFINE customAttribute(instanceVarName : String) FOR gmfgraph::CustomAttribute»
«EXPAND customAttrValueImpl-»
«IF directAccess»
«instanceVarName».«name» = «EXPAND customAttrValue»;
«ELSE»
«instanceVarName».set«name.firstToUpper()»(«EXPAND customAttrValue»);
«ENDIF»
«ENDDEFINE»
«DEFINE customAttrValueImpl FOR gmfgraph::CustomAttribute»
«IF multiStatementValue-»
«messageFormat(value, Sequence { 'attr' + name.firstToUpper() })-»
«ENDIF-»
«ENDDEFINE»
«DEFINE customAttrValue FOR gmfgraph::CustomAttribute»
«IF multiStatementValue»attr«name.firstToUpper()»«ELSE-»«value»«ENDIF-»
«ENDDEFINE»
|