blob: 0f6df4864baeda7bfa52117d8a5d291d7ebfad58 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 Agence spatiale canadienne / Canadian Space Agency
* 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:
* Pierre Allard,
* Regent L'Archeveque,
* Olivier L. Larouche - initial API and implementation
* SPDX-License-Identifier: EPL-1.0
*
*******************************************************************************/
package org.eclipse.apogy.common.emf.ui.emfforms.wizards;
import org.eclipse.apogy.common.emf.ui.emfforms.ApogyCommonEMFUiEMFFormsFacade;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.jface.dialogs.IDialogPage;
import org.eclipse.jface.wizard.WizardPage;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Composite;
public class EMFFormsWizardPage extends WizardPage {
private final static String WIZARD_PAGE_ID = "org.eclipse.apogy.common.emf.ui.emfforms.wizards.EMFFormsWizardPage";
private EObject eObject;
/**
* Constructor for the WizardPage.
*
* @param pageName
*/
public EMFFormsWizardPage() {
super(WIZARD_PAGE_ID);
setTitle("Edit element");
}
public EMFFormsWizardPage(EObject eObject) {
this();
this.eObject = eObject;
}
/**
* @see IDialogPage#createControl(Composite)
*/
@Override
public void createControl(Composite parent) {
Composite container = new Composite(parent, SWT.None);
container.setLayout(new GridLayout(1, false));
ApogyCommonEMFUiEMFFormsFacade.INSTANCE.createEMFForms(container, this.eObject);
setControl(container);
setPageComplete(true);
}
}