blob: 0f6c2849c2276026f0e32a1c58e3ae5c52a2a174 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2010 Oracle
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Konstantin Komissarchik - initial implementation and ongoing maintenance
******************************************************************************/
package org.eclipse.wst.common.project.facet.ui;
import org.eclipse.jface.wizard.WizardPage;
/**
* @author <a href="mailto:konstantin.komissarchik@oracle.com">Konstantin Komissarchik</a>
*/
public abstract class AbstractFacetWizardPage
extends WizardPage
implements IFacetWizardPage
{
protected IWizardContext context;
public AbstractFacetWizardPage( final String name )
{
super( name );
}
public final void setWizardContext( final IWizardContext context )
{
this.context = context;
}
public void transferStateToConfig()
{
}
}