KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > team > internal > ccvs > ui > wizards > ICVSWizard


1 /*******************************************************************************
2  * Copyright (c) 2003, 2006 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 /*
12  * Created on 16-Mar-2004
13  *
14  * To change the template for this generated file go to
15  * Window - Preferences - Java - Code Generation - Code and Comments
16  */

17 package org.eclipse.team.internal.ccvs.ui.wizards;
18
19 import org.eclipse.jface.wizard.IWizard;
20 import org.eclipse.jface.wizard.IWizardPage;
21
22 /**
23  * Extended wizard interface that differentiates retrieving
24  * the next page for display vs. for determining it's state
25  */

26 public interface ICVSWizard extends IWizard {
27     
28     /**
29      * Get the wizard page that follows the given page. If
30      * aboutToShow is true then the page will be shown.
31      * Otherwise, only its state will be queried.
32      * @param page a wizard page
33      * @param aboutToShow true iof the page returned will be shown
34      * @return the next wizard page
35      */

36     public IWizardPage getNextPage(IWizardPage page, boolean aboutToShow);
37 }
38
Popular Tags