oracle.bali.ewt.wizard
Class ImageWizardPage
java.lang.Object
|
+--oracle.bali.ewt.wizard.WizardPage
|
+--oracle.bali.ewt.wizard.ImageWizardPage
- Direct Known Subclasses:
- TitledWizardPage
- public class ImageWizardPage
- extends WizardPage
ImageWizardPages make it easy to match the Oracle UI standard for
wizard pages. They'll automatically lay out with an image on the
left, and the "interactive area" on the right, all with the correct
whitespace.
Note: Because the ImageWizardPage adds an additional
level to the container hierarchy, clients should not
add ComponentListeners to the "interactive" component if they
wish to receive componentShown()
events. Instead,
add the ComponentListener to the component returned by
getContent()
.
Constructor Summary |
ImageWizardPage()
Creates an empty ImageWizardPage. |
ImageWizardPage(java.awt.Component interactive,
java.awt.Image image,
java.lang.String label)
Creates an ImageWizardPage with the given interactive component,
given image, and given label. |
Method Summary |
java.awt.Image |
getImage()
Gets the image used on this page. |
java.awt.Component |
getInteractiveArea()
Gets the interactive area used on this page. |
void |
setImage(java.awt.Image image)
Sets the image used on this page. |
void |
setInteractiveArea(java.awt.Component interactiveArea)
Sets the interactive panel used on this page. |
Methods inherited from class oracle.bali.ewt.wizard.WizardPage |
addPropertyChangeListener, addWizardValidateListener, firePropertyChange, getAccessibleDescription, 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 |
ImageWizardPage
public ImageWizardPage()
- Creates an empty ImageWizardPage.
ImageWizardPage
public ImageWizardPage(java.awt.Component interactive,
java.awt.Image image,
java.lang.String label)
- Creates an ImageWizardPage with the given interactive component,
given image, and given label.
getImage
public java.awt.Image getImage()
- Gets the image used on this page.
setImage
public void setImage(java.awt.Image image)
- Sets the image used on this page.
getInteractiveArea
public java.awt.Component getInteractiveArea()
- Gets the interactive area used on this page.
setInteractiveArea
public void setInteractiveArea(java.awt.Component interactiveArea)
- Sets the interactive panel used on this page.