blob: 2c55fff9f91abeaa16e24a30d9677516b1e36f0a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 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.ui.internal.ide.dialogs;
import org.eclipse.jface.wizard.IWizard;
/**
* Represents a step in a multi-step wizard.
*/
public abstract class WizardStep {
private int number;
private boolean done = false;
/**
* Creates a wizard step.
*
* @param number the step number
*/
public WizardStep(int number) {
super();
this.number = number;
}
/**
* Returns the label for this step that can
* be presented to the user.
*
* @return String the label of this step
*/
abstract public String getLabel();
/**
* Returns an explaination of this step that can
* be presented to the user.
*
* @return String the details of this step
*/
abstract public String getDetails();
/**
* Returns the step's number.
*
* @return int the step's number
*/
public int getNumber() {
return number;
}
/**
* Returns the step's wizard. Subclasses are
* responsible for calling addPages method on
* the wizard, if needed, before returning.
*
* @return IWizard the wizard to complete the step
*/
public abstract IWizard getWizard();
/**
* Returns whether the step is done it's work
*/
public boolean isDone() {
return done;
}
/**
* Sets the step as being done
*/
public void markAsDone() {
done = true;
}
}