blob: e0f6fffcdc6941b9d1ca10a98ab677503adaba7a [file] [log] [blame]
//------------------------------------------------------------------------------
// Copyright (c) 2005, 2007 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 implementation
//------------------------------------------------------------------------------
package org.eclipse.epf.publishing.ui.wizards;
import java.util.List;
import org.eclipse.epf.publishing.services.PublishManager;
import org.eclipse.epf.publishing.services.PublishOptions;
import org.eclipse.epf.ui.wizards.IWizardExtender;
/**
* The interface for an extender of the Publish Configuration wizard.
*
* @author Kelvin Low
* @since 1.2
*/
public interface IPublishConfigWizardExtender extends IWizardExtender {
/**
* Gives the wizard extender a chance to perform some initialization.
*
* @param wizardPages
* a collection of <code>IWizardPage</code> owned by the wizard
*/
public void init(List wizardPages);
/**
* Gets the name of the user selected method configuration.
*
* @return the name of the user selected configuration or <code>null</code>
*/
public String getConfigName();
/**
* Gets the user specified publishing options.
*
* @return a <code>PublishOptions</code> object
*/
public PublishOptions getPublishingOptions();
/**
* Gets the configuration publisher.
*/
public PublishManager getPublisher();
/**
* Sets the configuration publisher.
*/
public void setPublisher(PublishManager publisher);
}