Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 195244c46b80822f2af47f9afb9bb3fbd99196e4 (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 {
		    attr EBoolean notify 'false'
		    attr EBoolean createChild 'false'
		    attr EBoolean propertySortChoices 'true'
		    ref GenClass genClass ref: GenClass@/1/foo/X
		    ref EStructuralFeature ecoreFeature 'x' ref: EReference@/2/X/x
		}
	--- */
	refers X x opposite y
	   
	/* XPECT gen ---
		GenFeature {
		    attr EBoolean notify 'false'
		    attr EBoolean createChild 'false'
		    attr EBoolean propertySortChoices 'true'
		    ref GenClass genClass ref: GenClass@/1/foo/X
		    ref EStructuralFeature ecoreFeature 'y' ref: EReference@/2/X/y
		}
	--- */
	refers X y opposite x
}

Back to the top