Skip to main content
summaryrefslogtreecommitdiffstats
blob: bebe25746b3028593d5762b198eec8c6de1031f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
 * 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);
}

Back to the top