public interface ITemplateConfigurationPageGroup
Modifier and Type | Method and Description |
---|---|
boolean |
canFinish()
Returns whether all pages could be finished without further user
interaction.
|
boolean |
finish(org.eclipse.core.runtime.IProgressMonitor progressMonitor)
Called by the wizard whenever the user presses the finish button.
|
ITemplateConfigurationPage |
getNextPage(org.eclipse.jface.wizard.IWizardPage page)
Returns the successor of the given page.
|
ITemplateConfigurationPage |
getPreviousPage(org.eclipse.jface.wizard.IWizardPage page)
Returns the predecessor of the given page.
|
TemplateConfiguration |
getTemplateConfiguration()
Gets the template configuration.
|
void |
initPages(org.eclipse.jface.wizard.IWizard wizard)
This method is called after the template configuration has been set.
|
void |
setTemplateConfiguration(TemplateConfiguration templateConfiguration)
Sets the template configuration.
|
ITemplateConfigurationPage getNextPage(org.eclipse.jface.wizard.IWizardPage page)
null
, return the starting page.page
- the pagenull
if noneITemplateConfigurationPage getPreviousPage(org.eclipse.jface.wizard.IWizardPage page)
null
, return the last page.page
- the pagenull
if noneboolean canFinish()
true
if all pages could be finished,
false
otherwisevoid initPages(org.eclipse.jface.wizard.IWizard wizard)
wizard
- the wizardvoid setTemplateConfiguration(TemplateConfiguration templateConfiguration)
templateConfiguration
- TemplateConfiguration getTemplateConfiguration()
boolean finish(org.eclipse.core.runtime.IProgressMonitor progressMonitor)
progressMonitor
- the progress monitortrue
if successfully finished, false
otherwise