blob: da031f5ccfe0003087bfc8a227d0456290e61c43 [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.wst.web.ui.internal.wizards;
import org.eclipse.swt.layout.GridData;
import org.eclipse.wst.common.componentcore.datamodel.properties.IFacetInstallDataModelProperties;
import org.eclipse.wst.common.frameworks.datamodel.AbstractDataModelProvider;
import org.eclipse.wst.common.frameworks.datamodel.DataModelFactory;
import org.eclipse.wst.common.frameworks.datamodel.IDataModel;
import org.eclipse.wst.common.frameworks.internal.datamodel.ui.DataModelWizardPage;
import org.eclipse.wst.common.project.facet.ui.IFacetWizardPage;
import org.eclipse.wst.common.project.facet.ui.IWizardContext;
public abstract class DataModelFacetInstallPage extends DataModelWizardPage implements IFacetWizardPage, IFacetInstallDataModelProperties {
public DataModelFacetInstallPage(String pageName) {
// TODO figure out a better way to do this without compromising the IDataModelWizard
// framework.
super(DataModelFactory.createDataModel(new AbstractDataModelProvider() {
}), pageName);
}
protected static GridData gdhfill() {
return new GridData(GridData.FILL_HORIZONTAL);
}
public void setWizardContext(IWizardContext context) {
// Intentionally empty
}
public void transferStateToConfig() {
// Intentionally empty
}
public void setConfig(final Object config) {
model.removeListener(this);
synchHelper.dispose();
model = (IDataModel) config;
model.addListener(this);
synchHelper = initializeSynchHelper(model);
}
}