blob: 713844742c486ad42bb70452b1accf09127b5fd6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 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
*******************************************************************************/
/*
* Created on 16-Mar-2004
*
* To change the template for this generated file go to
* Window - Preferences - Java - Code Generation - Code and Comments
*/
package org.eclipse.team.internal.ccvs.ui.wizards;
import org.eclipse.jface.wizard.IWizard;
import org.eclipse.jface.wizard.IWizardPage;
/**
* Extended wizard interface that differentiates retrieving
* the next page for display vs. for determining it's state
*/
public interface ICVSWizard extends IWizard {
/**
* Get the wizard page that follows the given page. If
* aboutToShow is true then the page will be shown.
* Otherwise, only its state will be queried.
* @param page a wizard page
* @param aboutToShow true iof the page returned will be shown
* @return the next wizard page
*/
public IWizardPage getNextPage(IWizardPage page, boolean aboutToShow);
}