blob: 056e1d5cc63b66fa255f2b5cc328aaaccc7cfe80 (
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
|
/*
* 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"»
«DEFINE localCoordinates FOR gmfgraph::Figure»
/**
* @generated
*/
private boolean myUseLocalCoordinates = «!children.typeSelect(Polyline).isEmpty()»;
/**
* @generated
*/
protected boolean useLocalCoordinates() {
return myUseLocalCoordinates;
}
/**
* @generated
*/
protected void setUseLocalCoordinates(boolean useLocalCoordinates) {
myUseLocalCoordinates = useLocalCoordinates;
}
«ENDDEFINE»
«DEFINE localCoordinates FOR gmfgraph::Polyline»
«ENDDEFINE»
«DEFINE extraMethods FOR gmfgraph::Figure-»
«ENDDEFINE»
«DEFINE extraMethods FOR gmfgraph::ScalablePolygon-»
«EXPAND xtras::ScalablePolygon::behaviour-»
«ENDDEFINE»
|