blob: b47e919939556796d97fd00c58a7ed7b433ffeca [file] [log] [blame]
/**
* Copyright (c) 2011, 2015 - Lunifera GmbH (Gross Enzersdorf, Austria), Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Florian Pirchner - Initial implementation
*/
package org.eclipse.osbp.ide.core.ui.shared;
import org.eclipse.xtext.builder.builderState.IBuilderState;
import org.eclipse.xtext.resource.SynchronizedXtextResourceSet;
import org.eclipse.xtext.resource.XtextResourceSet;
import org.eclipse.xtext.service.AbstractGenericModule;
import org.eclipse.osbp.ide.core.api.i18n.II18nRegistry;
import com.google.inject.Binder;
import com.google.inject.Provider;
/**
* Shared state module defines the bindings for the injector of this bundle.
*/
public class OSBPSharedStateModule extends AbstractGenericModule {
public Provider<II18nRegistry> provideII18nRegistry() {
return Access.getII18nRegistry();
}
@SuppressWarnings("restriction")
public Provider<IBuilderState> provideIBuilderState() {
return Access.getIBuilderState();
}
public void configure(Binder binder) {
super.configure(binder);
binder.bind(XtextResourceSet.class).to(
SynchronizedXtextResourceSet.class);
}
}