|
Eclipse Platform Release 3.2 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use IWizardPage | |
---|---|
org.eclipse.jface.wizard | Provides a framework for wizards. |
org.eclipse.ltk.ui.refactoring | Application programming interface to implement a wizard based user interface for refactorings. |
org.eclipse.ltk.ui.refactoring.history | Application programming interface to display and preview refactoring history information. |
org.eclipse.team.ui.synchronize | Contains the team synchronization presentation framework and support for the Synchronize View. |
org.eclipse.ui.dialogs | Classes for standard dialogs, wizards, and preference pages in the Eclipse Platform User Interface. |
org.eclipse.ui.wizards.datatransfer | Provides the standard Import and Export wizards for moving resources into and out of the workspace. |
Uses of IWizardPage in org.eclipse.jface.wizard |
---|
Classes in org.eclipse.jface.wizard that implement IWizardPage | |
---|---|
class |
WizardPage
An abstract base implementation of a wizard page. |
class |
WizardSelectionPage
An abstract implementation of a wizard page that manages a set of embedded wizards. |
Methods in org.eclipse.jface.wizard that return IWizardPage | |
---|---|
IWizardPage |
WizardDialog.getCurrentPage()
|
IWizardPage |
IWizardContainer.getCurrentPage()
Returns the current wizard page for this container. |
IWizardPage |
WizardSelectionPage.getNextPage()
The WizardSelectionPage implementation of
this IWizardPage method returns the first page
of the currently selected wizard if there is one. |
IWizardPage |
IWizardPage.getNextPage()
Returns the wizard page that would to be shown if the user was to press the Next button. |
IWizardPage |
WizardPage.getNextPage()
|
IWizardPage |
IWizard.getNextPage(IWizardPage page)
Returns the successor of the given page. |
IWizardPage |
Wizard.getNextPage(IWizardPage page)
|
IWizardPage |
IWizard.getPage(java.lang.String pageName)
Returns the wizard page with the given name belonging to this wizard. |
IWizardPage |
Wizard.getPage(java.lang.String name)
|
IWizardPage[] |
IWizard.getPages()
Returns all the pages in this wizard. |
IWizardPage[] |
Wizard.getPages()
|
IWizardPage |
IWizardPage.getPreviousPage()
Returns the wizard page that would to be shown if the user was to press the Back button. |
IWizardPage |
WizardPage.getPreviousPage()
|
IWizardPage |
IWizard.getPreviousPage(IWizardPage page)
Returns the predecessor of the given page. |
IWizardPage |
Wizard.getPreviousPage(IWizardPage page)
|
IWizardPage |
IWizard.getStartingPage()
Returns the first page to be shown in this wizard. |
IWizardPage |
Wizard.getStartingPage()
|
Methods in org.eclipse.jface.wizard with parameters of type IWizardPage | |
---|---|
void |
Wizard.addPage(IWizardPage page)
Adds a new page to this wizard. |
IWizardPage |
IWizard.getNextPage(IWizardPage page)
Returns the successor of the given page. |
IWizardPage |
Wizard.getNextPage(IWizardPage page)
|
IWizardPage |
IWizard.getPreviousPage(IWizardPage page)
Returns the predecessor of the given page. |
IWizardPage |
Wizard.getPreviousPage(IWizardPage page)
|
void |
IWizardPage.setPreviousPage(IWizardPage page)
Sets the wizard page that would typically be shown if the user was to press the Back button. |
void |
WizardPage.setPreviousPage(IWizardPage page)
|
void |
WizardDialog.showPage(IWizardPage page)
|
void |
IWizardContainer.showPage(IWizardPage page)
Makes the given page visible. |
protected void |
WizardDialog.updateSize(IWizardPage page)
Computes the correct dialog size for the current page and resizes its shell if nessessary. |
Uses of IWizardPage in org.eclipse.ltk.ui.refactoring |
---|
Classes in org.eclipse.ltk.ui.refactoring that implement IWizardPage | |
---|---|
class |
RefactoringWizardPage
An abstract base implementation of a refactoring wizard page. |
class |
UserInputWizardPage
An abstract wizard page that is to be used to implement user input pages presented inside a refactoring wizard . |
Methods in org.eclipse.ltk.ui.refactoring that return IWizardPage | |
---|---|
protected IWizardPage |
UserInputWizardPage.computeSuccessorPage()
Triggers the refactoring's condition checking and returns either the error wizard page or a preview page, depending on the outcome of the precondition checking. |
IWizardPage |
UserInputWizardPage.getNextPage()
Returns the wizard page that would to be shown if the user was to press the Next button. |
IWizardPage |
RefactoringWizard.getPreviousPage(IWizardPage page)
Returns the predecessor of the given page. |
IWizardPage |
RefactoringWizard.getStartingPage()
Returns the first page to be shown in this wizard. |
Methods in org.eclipse.ltk.ui.refactoring with parameters of type IWizardPage | |
---|---|
void |
RefactoringWizard.addPage(IWizardPage page)
Adds a new page to this wizard. This method asserts that the pages added to the refactoring wizard are instances of type RefactoringWizardPage . |
IWizardPage |
RefactoringWizard.getPreviousPage(IWizardPage page)
Returns the predecessor of the given page. |
Uses of IWizardPage in org.eclipse.ltk.ui.refactoring.history |
---|
Methods in org.eclipse.ltk.ui.refactoring.history that return IWizardPage | |
---|---|
IWizardPage |
RefactoringHistoryWizard.getNextPage(IWizardPage page)
Returns the successor of the given page. |
IWizardPage |
RefactoringHistoryWizard.getPreviousPage(IWizardPage page)
Returns the predecessor of the given page. |
Methods in org.eclipse.ltk.ui.refactoring.history with parameters of type IWizardPage | |
---|---|
void |
RefactoringHistoryWizard.addPage(IWizardPage page)
Adds a new page to this wizard. Clients must contribute their wizard pages by re-implementing RefactoringHistoryWizard.addUserDefinedPages() . |
IWizardPage |
RefactoringHistoryWizard.getNextPage(IWizardPage page)
Returns the successor of the given page. |
IWizardPage |
RefactoringHistoryWizard.getPreviousPage(IWizardPage page)
Returns the predecessor of the given page. |
Uses of IWizardPage in org.eclipse.team.ui.synchronize |
---|
Methods in org.eclipse.team.ui.synchronize that return IWizardPage | |
---|---|
IWizardPage |
ParticipantSynchronizeWizard.getNextPage(IWizardPage page)
|
IWizardPage |
ParticipantSynchronizeWizard.getStartingPage()
|
Methods in org.eclipse.team.ui.synchronize with parameters of type IWizardPage | |
---|---|
IWizardPage |
ParticipantSynchronizeWizard.getNextPage(IWizardPage page)
|
Uses of IWizardPage in org.eclipse.ui.dialogs |
---|
Subinterfaces of IWizardPage in org.eclipse.ui.dialogs | |
---|---|
interface |
IWorkingSetPage
A working set page allows the user to edit an existing working set and create a new working set. |
Classes in org.eclipse.ui.dialogs that implement IWizardPage | |
---|---|
class |
WizardDataTransferPage
The common superclass for wizard import and export pages. |
class |
WizardExportPage
Deprecated. use WizardExportResourcePage |
class |
WizardExportResourcesPage
Abstract superclass for a typical export wizard's main page. |
class |
WizardImportPage
Deprecated. use WizardResourceImportPage |
class |
WizardNewFileCreationPage
Standard main page for a wizard that creates a file resource. |
class |
WizardNewFolderMainPage
Standard main page for a wizard that creates a folder resource. |
class |
WizardNewLinkPage
Standard resource link page for a wizard that creates a file or folder resource. |
class |
WizardNewProjectCreationPage
Standard main page for a wizard that is creates a project resource. |
class |
WizardNewProjectReferencePage
Standard project reference page for a wizard that creates a project resource. |
class |
WizardResourceImportPage
The abstract superclass for a typical import wizard's main page. |
Uses of IWizardPage in org.eclipse.ui.wizards.datatransfer |
---|
Classes in org.eclipse.ui.wizards.datatransfer that implement IWizardPage | |
---|---|
class |
WizardExternalProjectImportPage
Standard main page for a wizard that creates a project resource from whose location already contains a project. |
|
Eclipse Platform Release 3.2 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Guidelines for using Eclipse APIs.
Copyright (c) IBM Corp. and others 2000, 2006. All rights reserved.