blob: e4089f67ff585a92df6ec9c45169432c5ffc95e4 [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 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Florian Pirchner - Initial implementation
*/
package org.eclipse.osbp.xtext.builder.ui.access.impl;
import org.eclipse.xtext.ui.shared.SharedStateModule;
import org.eclipse.osbp.xtext.builder.types.loader.api.ITypeLoaderFactory;
import org.eclipse.osbp.xtext.builder.types.loader.api.ITypeLoaderProvider;
import org.eclipse.osbp.xtext.builder.ui.access.jdt.IJdtTypeLoaderFactory;
import org.eclipse.osbp.xtext.builder.ui.access.jdt.IJdtTypeLoaderProvider;
import org.eclipse.osbp.xtext.builder.ui.access.jdt.impl.JdtTypeLoaderFactory;
import org.eclipse.osbp.xtext.builder.ui.access.jdt.impl.JdtTypeLoaderProvider;
import com.google.inject.Binder;
import com.google.inject.Singleton;
@SuppressWarnings("restriction")
public class UiModule extends SharedStateModule {
public void configureITypeLoaderFactory(Binder binder) {
binder.bind(ITypeLoaderFactory.class).to(JdtTypeLoaderFactory.class)
.in(Singleton.class);
binder.bind(IJdtTypeLoaderFactory.class).to(JdtTypeLoaderFactory.class)
.in(Singleton.class);
}
public void configureITypeLoaderProvider(Binder binder) {
binder.bind(ITypeLoaderProvider.class).to(JdtTypeLoaderProvider.class)
.in(Singleton.class);
binder.bind(IJdtTypeLoaderProvider.class)
.to(JdtTypeLoaderProvider.class).in(Singleton.class);
}
}