java.lang.Object
|
+--org.eclipse.jface.dialogs.DialogPage
|
+--org.eclipse.jface.wizard.WizardPage
|
+--com.ibm.lab.soln.dialogs.MyBasicWizardPage1
A simple Wizard Page used to demonstrate multi page wizard operation and page state management.
| Fields inherited from interface org.eclipse.jface.dialogs.IMessageProvider |
ERROR, INFORMATION, NONE, WARNING |
| Constructor Summary | |
MyBasicWizardPage1(java.lang.String pageName)
|
|
MyBasicWizardPage1(java.lang.String pageName,
java.lang.String title,
org.eclipse.jface.resource.ImageDescriptor titleImage)
Constructor to set default page status field text. |
|
MyBasicWizardPage1(java.lang.String pageName,
java.lang.String title,
org.eclipse.jface.resource.ImageDescriptor titleImage,
boolean pageStatus)
Constructor to initialize page status field and set page status field text. |
|
| Method Summary | |
void |
createControl(org.eclipse.swt.widgets.Composite parent)
Creates the top level dialog control under the given parent composite. |
| Methods inherited from class org.eclipse.jface.wizard.WizardPage |
canFlipToNextPage, getContainer, getDialogSettings, getImage, getName, getNextPage, getPreviousPage, getShell, getWizard, isCurrentPage, isPageComplete, setDescription, setErrorMessage, setImageDescriptor, setMessage, setPageComplete, setPreviousPage, setTitle, setWizard, toString |
| Methods inherited from class org.eclipse.jface.dialogs.DialogPage |
convertHeightInCharsToPixels, convertHorizontalDLUsToPixels, convertVerticalDLUsToPixels, convertWidthInCharsToPixels, dispose, getControl, getDescription, getDialogFontName, getErrorMessage, getFont, getMessage, getMessageType, getTitle, getToolTipText, initializeDialogUnits, isControlCreated, performHelp, setControl, setMessage, setVisible |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface org.eclipse.jface.dialogs.IDialogPage |
dispose, getControl, getDescription, getErrorMessage, getMessage, getTitle, performHelp, setVisible |
| Constructor Detail |
public MyBasicWizardPage1(java.lang.String pageName)
public MyBasicWizardPage1(java.lang.String pageName,
java.lang.String title,
org.eclipse.jface.resource.ImageDescriptor titleImage)
public MyBasicWizardPage1(java.lang.String pageName,
java.lang.String title,
org.eclipse.jface.resource.ImageDescriptor titleImage,
boolean pageStatus)
| Method Detail |
public void createControl(org.eclipse.swt.widgets.Composite parent)
Implementors are responsible for ensuring that the created control can
be accessed via getControl. This is done by identifying the main
control you create using the setControl method.
createControl in class org.eclipse.jface.dialogs.DialogPageparent - the parent compositeIDialogPage.createControl(Composite)