Commit 2fd96b71 authored by Philip Makedonski's avatar Philip Makedonski
Browse files

+ updated gitignore and overridden resources

parent 841b615b
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
/TDLan2RuntimeModule.xtend
/TDLan2StandaloneSetup.xtend
/TDLan2RuntimeModule.java
/TDLan2StandaloneSetup.java
+19 −0
Original line number Diff line number Diff line
/*
 * generated by Xtext 2.22.0
 */
package org.etsi.mts.tdl;

import org.eclipse.xtext.formatting2.IFormatter2;
import org.etsi.mts.tdl.formatting2.TDLan2Formatter;

/**
 * Use this class to register components to be used at runtime / without the Equinox extension registry.
 */
public class TDLan2RuntimeModule extends AbstractTDLan2RuntimeModule {
	// contributed by org.eclipse.xtext.xtext.generator.formatting.Formatter2Fragment2
	//Note:added here as the generator seems to make a mess at the moment
	public Class<? extends IFormatter2> bindIFormatter2() {
		return TDLan2Formatter.class;
	}

}
+15 −0
Original line number Diff line number Diff line
/*
 * generated by Xtext 2.22.0
 */
package org.etsi.mts.tdl;


/**
 * Initialization support for running Xtext languages without Equinox extension registry.
 */
public class TDLan2StandaloneSetup extends TDLan2StandaloneSetupGenerated {

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