blob: e455080d519914f9af0f726f465c90ed7e5671e3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010-2014 BestSolution.at and others.
*
* 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:
* Tom Schindl <tom.schindl@bestsolution.at> - initial API and implementation
* Marco Descher <marco@descher.at> - Bug 424986 (Documentation)
******************************************************************************/
package org.eclipse.e4.tools.emf.ui.common;
import org.eclipse.emf.ecore.EClass;
/**
* Contribute an editor for an application model element
*/
public interface IEditorDescriptor {
/**
* @return supported model element
*/
public EClass getEClass();
/**
* @return a class extending
* {@link org.eclipse.e4.tools.emf.ui.common.component.AbstractComponentEditor}
* capable of editing class returned in {@link #getEClass()}
*/
public Class<?> getEditorClass();
}