Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3d0aac91a260dc32a314652e6da29d335e30d356 (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
package foo

class X
{
	/* XPECT gen ---
		GenFeature {
			notify = 'false'
			createChild = 'false'
			propertySortChoices = 'true'
			genClass -> GenClass /1/foo/X
			ecoreFeature -> EReference /2/X/x
		}
	--- */
	refers X x opposite y
	   
	/* XPECT gen ---
		GenFeature {
			notify = 'false'
			createChild = 'false'
			propertySortChoices = 'true'
			genClass -> GenClass /1/foo/X
			ecoreFeature -> EReference /2/X/y
		}
	--- */
	refers X y opposite x
}

Back to the top