summaryrefslogtreecommitdiffstats
path: root/rba.tool.editor.ui/src/rba/tool/editor/ui/template/RBATemplateApplyModule.xtend
blob: b2fc0fa391e4a16f5a33d5502055505ee5bdfbde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package rba.tool.editor.ui.template

import com.google.inject.Module
import com.google.inject.Binder
import org.eclipse.xtext.builder.impl.ToBeBuiltComputer

class RBATemplateApplyModule implements Module {

	override configure(Binder binder) {
		binder.bind(ToBeBuiltComputer).to(RBATemplateApplyToBeBuiltComputer)
	}

}