Skip to main content
summaryrefslogtreecommitdiffstats
blob: 98c5423786a6ca78411635855e9dd1eb4caad775 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

package org.eclipse.qvtd.xtext.qvtrelation;

/**
 * Initialization support for running Xtext languages 
 * without equinox extension registry
 */
public class QVTrelationStandaloneSetup extends QVTrelationStandaloneSetupGenerated{

	public static void doSetup() {
		new QVTrelationStandaloneSetup().createInjectorAndDoEMFRegistration();
	}
}

Back to the top