blob: f8eef48106bb1c9696682100949048e9a31eda0c [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.dsl.entity.xtext.ui;
import org.eclipse.ui.plugin.AbstractUIPlugin;
import org.eclipse.xtext.common.types.access.IJvmTypeProvider;
import org.eclipse.xtext.ui.editor.contentassist.IContentProposalProvider;
import org.eclipse.xtext.ui.editor.syntaxcoloring.IHighlightingConfiguration;
import org.eclipse.xtext.ui.editor.syntaxcoloring.ISemanticHighlightingCalculator;
import org.eclipse.osbp.dsl.entity.xtext.ui.contentassist.EntityGrammarProposalProvider;
import org.eclipse.osbp.dsl.entity.xtext.ui.labeling.EntityGrammarLabelProvider;
import org.eclipse.osbp.dsl.entity.xtext.ui.type.EntityJdtTypeProviderFactory;
/**
* Use this class to register components to be used within the IDE.
*/
public class EntityGrammarUiModule extends AbstractEntityGrammarUiModule {
public EntityGrammarUiModule(AbstractUIPlugin plugin) {
super(plugin);
}
@Override
public Class<? extends IContentProposalProvider> bindIContentProposalProvider() {
return EntityGrammarProposalProvider.class;
}
public Class<? extends IHighlightingConfiguration> bindIHighlightingConfiguration() {
return EntityHighlightingConfiguration.class;
}
public Class<? extends ISemanticHighlightingCalculator> bindISemanticHighlightingCalculator() {
return EntityGrammarHighlightingCalculator.class;
}
public Class<? extends org.eclipse.jface.viewers.ILabelProvider> bindILabelProvider() {
return EntityGrammarLabelProvider.class;
}
public Class<? extends IJvmTypeProvider.Factory> bindIJvmTypeProvider$Factory() {
return EntityJdtTypeProviderFactory.class;
}
}