blob: 31433f268355229c10873293a8d7af3cf92aaf9b [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.ui.forms.editor.FormPage;
/**
* @author pfeifferc
*/
public class MEFormPage extends FormPage {
private AbstractMEEditorPage page;
/**
* @param id id
* @param title title
*/
public MEFormPage(String id, String title) {
super(id, title);
}
/**
* @param editor editor
* @param id id
* @param name name
*/
public MEFormPage(MEEditor editor, String id, String name) {
super(editor, id, name);
}
/**
* Sets the parent MEPage.
*
* @param page parent page
*/
public void setParentMEPage(AbstractMEEditorPage page) {
this.page = page;
}
/**
* @return the parent MEPage
*/
public AbstractMEEditorPage getParentMEPage() {
return page;
}
}