blob: fbf30e6bf76103af08c50eae33f9df326dd6b861 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 Kai Toedter and others.
*
* 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:
* Kai Toedter - initial API and implementation
******************************************************************************/
package org.eclipse.osbp.vaaclipse.presentation.engine;
import org.eclipse.e4.ui.model.application.ui.MUIElement;
import org.eclipse.osbp.vaaclipse.presentation.renderers.GenericRenderer;
@SuppressWarnings("restriction")
public interface RendererFactory {
public GenericRenderer getRenderer(MUIElement uiElement);
}