edu.uky.rch.ept.projectexplorer.wizards
Interface IProjectWizardPage

All Superinterfaces:
org.eclipse.jface.dialogs.IDialogPage, org.eclipse.jface.wizard.IWizardPage

public interface IProjectWizardPage
extends org.eclipse.jface.wizard.IWizardPage

Class for wizard pages contributing to the "New Project" wizard.

Author:
Neil Moore

Method Summary
 void cancelled()
          Callback to indicate that the wizard has been cancelled.
 void finished(Project project)
          Callback to indicate that the project has been created.
 
Methods inherited from interface org.eclipse.jface.wizard.IWizardPage
canFlipToNextPage, getName, getNextPage, getPreviousPage, getWizard, isPageComplete, setPreviousPage, setWizard
 
Methods inherited from interface org.eclipse.jface.dialogs.IDialogPage
createControl, dispose, getControl, getDescription, getErrorMessage, getImage, getMessage, getTitle, performHelp, setDescription, setImageDescriptor, setTitle, setVisible
 

Method Detail

finished

public void finished(Project project)
Callback to indicate that the project has been created. This method is called when the user selects "Finish", even if the wizard page was never shown.

Parameters:
project - the project just created.

cancelled

public void cancelled()
Callback to indicate that the wizard has been cancelled. This method is called when the user selects "Cancel", even if the wizard page was never shown.