/*
* generated by Xtext
*/
package it.xsemantics.example.lambda.ui;
import it.xsemantics.example.lambda.ui.wizard.LambdaProjectCreatorCustom;
import org.eclipse.ui.plugin.AbstractUIPlugin;
import org.eclipse.xtext.ui.wizard.IProjectCreator;
/**
* Use this class to register components to be used within the IDE.
*/
public class LambdaUiModule extends
it.xsemantics.example.lambda.ui.AbstractLambdaUiModule {
public LambdaUiModule(AbstractUIPlugin plugin) {
super(plugin);
}
@Override
public Class<? extends IProjectCreator> bindIProjectCreator() {
return LambdaProjectCreatorCustom.class;
}
}