oracle.bali.ewt.wizard
Class TitledWizardPage
java.lang.Object
|
+--oracle.bali.ewt.wizard.WizardPage
|
+--oracle.bali.ewt.wizard.ImageWizardPage
|
+--oracle.bali.ewt.wizard.TitledWizardPage
- Direct Known Subclasses:
- WelcomeWizardPage
- public class TitledWizardPage
- extends ImageWizardPage
An ImageWizardPage subclass that contains a title. The title
is placed at the top of the content and is in a larger font than the
rest of the page.
Examples of TitledWizardPages are the welcome page and finish page specified
in the Oracle Wizard UI Spec section 4.1. This is based on version 3.0 of the
Oracle Wizards User Interface Specification.
Constructor Summary |
TitledWizardPage()
Creates an empty TitledWizardPage |
TitledWizardPage(java.awt.Component interactive,
java.awt.Image image,
java.lang.String label)
Creates an TitledWizardPage with the given interactive area, image,
label without a title. |
TitledWizardPage(java.awt.Component interactive,
java.awt.Image image,
java.lang.String label,
java.lang.String title)
Creates an TitledWizardPage with the given interactive area, image,
label, and title. |
Method Summary |
java.lang.String |
getAccessibleDescription()
If setAccessibleDescription() has not been called
than simply return getTitle(). |
java.awt.Component |
getInteractiveArea()
Gets the interactive area used on this page. |
java.lang.String |
getTitle()
Get the title for the page. |
void |
setInteractiveArea(java.awt.Component interactiveArea)
Sets the interactive panel used on this page. |
void |
setTitle(java.lang.String title)
Set the title for the page. |
Methods inherited from class oracle.bali.ewt.wizard.WizardPage |
addPropertyChangeListener, addWizardValidateListener, firePropertyChange, getCanAdvance, getCanGoBack, getContent, getIndex, getInitialFocus, getLabel, getParent, isEnabled, isSelected, isVisible, processWizardValidateEvent, removePropertyChangeListener, removeWizardValidateListener, setAccessibleDescription, setCanAdvance, setCanGoBack, setContent, setEnabled, setInitialFocus, setLabel, setVisible, toString, validatePage |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
TitledWizardPage
public TitledWizardPage()
- Creates an empty TitledWizardPage
TitledWizardPage
public TitledWizardPage(java.awt.Component interactive,
java.awt.Image image,
java.lang.String label)
- Creates an TitledWizardPage with the given interactive area, image,
label without a title.
TitledWizardPage
public TitledWizardPage(java.awt.Component interactive,
java.awt.Image image,
java.lang.String label,
java.lang.String title)
- Creates an TitledWizardPage with the given interactive area, image,
label, and title.
getTitle
public java.lang.String getTitle()
- Get the title for the page. The title is displayed in a larger
font than the rest of the page.
setTitle
public void setTitle(java.lang.String title)
- Set the title for the page. The title is displayed in a larger
font than the rest of the page.
getInteractiveArea
public java.awt.Component getInteractiveArea()
- Gets the interactive area used on this page.
- Overrides:
getInteractiveArea
in class ImageWizardPage
setInteractiveArea
public void setInteractiveArea(java.awt.Component interactiveArea)
- Sets the interactive panel used on this page.
- Overrides:
setInteractiveArea
in class ImageWizardPage
getAccessibleDescription
public java.lang.String getAccessibleDescription()
- If setAccessibleDescription() has not been called
than simply return getTitle().
- Overrides:
getAccessibleDescription
in class WizardPage
- Following copied from class:
oracle.bali.ewt.wizard.WizardPage
- See Also:
WizardPage.setAccessibleDescription(java.lang.String)