blob: 133b8b9cd01b5354c78cf025b54cb0d6b0b5caa3 [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.menu.ui;
import org.eclipse.osbp.xtext.basic.ui.BasicDSLDocumentationTranslator;
import org.eclipse.osbp.xtext.basic.ui.BasicDSLEObjectHoverDocumentationProvider;
public class MenuDSLEObjectHoverDocumentationProvider extends BasicDSLEObjectHoverDocumentationProvider {
private static MenuDSLEObjectHoverDocumentationProvider INSTANCE;
public static MenuDSLEObjectHoverDocumentationProvider instance() {
return INSTANCE;
}
public MenuDSLEObjectHoverDocumentationProvider() {
super();
INSTANCE = this;
}
@Override
protected BasicDSLDocumentationTranslator getTranslator() {
return MenuDSLDocumentationTranslator.instance();
}
}