blob: 59f7f4e109b324602a8780504db535c1ed514c5c [file] [log] [blame]
/**
*
* Copyright (c) 2011, 2016 - 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:
* Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
*
*/
package org.eclipse.osbp.xtext.gridsource.ui;
import org.eclipse.ui.plugin.AbstractUIPlugin;
import org.eclipse.xtext.ui.editor.hover.IEObjectHover;
import org.eclipse.xtext.ui.editor.hover.IEObjectHoverProvider;
import org.eclipse.xtext.ui.editor.hover.html.IEObjectHoverDocumentationProvider;
/**
* Use this class to register components to be used within the IDE.
*/
public class GridSourceUiModule extends
org.eclipse.osbp.xtext.gridsource.ui.AbstractGridSourceUiModule {
public GridSourceUiModule(AbstractUIPlugin plugin) {
super(plugin);
}
@Override
public Class<? extends IEObjectHover> bindIEObjectHover() {
return GridSourceEObjectHover.class;
}
public Class<? extends IEObjectHoverProvider> bindIEObjectHoverProvider() {
return GridSourceEObjectHoverProvider.class;
}
public Class<? extends IEObjectHoverDocumentationProvider> bindIEObjectHoverDocumentationProvider() {
return GridSourceEObjectHoverDocumentationProvider.class;
}
}