blob: 0569db411f62f647a545261eeb349589f1ac9bb6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008-2011 Chair for Applied Software Engineering,
* Technische Universitaet Muenchen.
* 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:
******************************************************************************/
package org.eclipse.emf.ecp.editor;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.edit.domain.EditingDomain;
import org.eclipse.ui.forms.editor.FormPage;
/**
* An abstract class for the MEEditorPages.
*
* @author shterev
*/
public abstract class AbstractMEEditorPage {
/**
* Default init.
*
* @param editor the {@link MEEditor}
* @param editingDomain the editingDomain
* @param modelElement the modelElement
* @return FormPage
*/
public abstract FormPage createPage(MEEditor editor, EditingDomain editingDomain, EObject modelElement);
}