Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 35473e4fd0d9c8e7b2a3efc678e6858266bf9560 (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
// XPECT noValidationErrors

/* XPECT genBase ---
	GenPackage {
		prefix = 'Foo'
		disposableProviderFactory = 'true'
		ecorePackage -> EPackage foo
		genClasses = [
			GenClass {
				genPackage -> GenPackage foo.FooPackage
				ecoreClass -> EClass foo::Bar
			}
		]
		genClassifiers -> [
			GenClass foo.Bar
		]
	}
---
*/

package foo

class Bar {}

Back to the top