blob: cb3b07544ee2bd35aaff6c0b4d239a84ee45a10a [file] [log] [blame]
//------------------------------------------------------------------------------
// Copyright (c) 2005, 2006 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 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 Export Microsoft Project wizard.
*
* @author Kelvin Low
* @since 1.0
*/
public interface IPublishConfigWizardExtender extends IWizardExtender {
/**
* 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 selected publishing options.
*
* @return a <code>PublishOptions</code> object
*/
public PublishOptions getPublishingOptions();
/**
* Sets the configuration publisher.
*/
public void setPublisher(PublishManager publisher);
/**
* Gets the configuration publisher.
*/
public PublishManager getPublisher();
}