Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b115d8bb695b3391c4e41f32cc08a4b89813b49f (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
package genFeatures1

class X
{
	/* XPECT genBase at x ---
		GenFeature {
			notify = 'false'
			createChild = 'false'
			propertySortChoices = 'true'
			ecoreFeature -> EReference genFeatures1::X::x
		}
	--- */
	refers X x opposite y
	   
	/* XPECT genBase at y ---
		GenFeature {
			notify = 'false'
			createChild = 'false'
			propertySortChoices = 'true'
			ecoreFeature -> EReference genFeatures1::X::y
		}
	--- */
	refers X y opposite x
}

Back to the top