blob: 4a0270fc5f25f39ee581e852a8a3804cf582d714 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2005 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.j2ee.internal.wizard;
import org.eclipse.jst.j2ee.project.facet.IJ2EEModuleFacetInstallDataModelProperties;
import org.eclipse.jst.j2ee.ui.project.facet.EarSelectionPanel;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.wst.web.ui.internal.wizards.DataModelFacetInstallPage;
public abstract class J2EEModuleFacetInstallPage extends DataModelFacetInstallPage implements IJ2EEModuleFacetInstallDataModelProperties{
public J2EEModuleFacetInstallPage(String pageName){
super(pageName);
}
protected EarSelectionPanel earPanel;
public void dispose() {
if(null != earPanel){
earPanel.dispose();
}
super.dispose();
}
protected void setupEarControl(final Composite parent) {
this.earPanel = new EarSelectionPanel( model, parent, SWT.NONE );
this.earPanel.setLayoutData( gdhfill() );
}
}