blob: 3efa8a2603213eeef3d4eb3039c15ea8f06a7863 [file] [log] [blame]
/**
* Copyright (c) 2013 Rushan Gilmullin, Florian Pirchner, Sopot Scela and others
* 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:
* Rushan Gilmullin - Initial implementation
*/
package org.eclipse.osbp.e4tools.extension;
import org.eclipse.e4.tools.emf.ui.common.IEditorDescriptor;
import org.eclipse.emf.ecore.EClass;
import e4modelextension.E4modelextensionPackage;
/**
* The Class EditorPartDescriptorEditorDesc.
*/
public class EditorPartDescriptorEditorDesc implements IEditorDescriptor {
/* (non-Javadoc)
* @see org.eclipse.e4.tools.emf.ui.common.IEditorDescriptor#getEClass()
*/
public EClass getEClass() {
return E4modelextensionPackage.Literals.EDITOR_PART_DESCRIPTOR;
}
/* (non-Javadoc)
* @see org.eclipse.e4.tools.emf.ui.common.IEditorDescriptor#getEditorClass()
*/
public Class<?> getEditorClass() {
return EditorPartDescriptorEditor.class;
}
}