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

// XPECT noValidationErrors

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

Back to the top