|
|
Package com.dassault_systemes.catjdialog |
Class CATWizard
|
Class Hierarchy |
java.lang.Object | +-com.dassault_systemes.catjdialog.CATCallbackSource | +-com.dassault_systemes.catjdialog.CATDialog | +-com.dassault_systemes.catjdialog.CATWizard
Class Location |
Class Description |
public class CATWizard
The wizard graphical component.
<wizard_path>.Title
entry.
You may also set it programmatically using setTitle()
.
Field Summary |
Constructor Summary |
CATWizard(CATDialog iParent, String iName) |
Method Summary |
String | getTitle() |
void | setTitle(String iTitle) |
String | getImage() |
void | setImage(String iImage) |
String | getPosition() |
void | setPosition(String iPosition) |
void | moveNext() |
void | movePrevious() |
CATNotification | getPreviousNotification() |
CATNotification | getNextNotification() |
CATNotification | getCancelNotification() |
Field Detail |
Constructor Detail |
CATWizard(CATDialog iParent, String iName)Creates a wizard with the specified parent and name.
iParent
iName
Method Detail |
String getTitle()Returns the wizard's title.
Returns the programmatic value if setTitle() has been called,
or tries to retrieve its title from the associated message catalog file
(<wizard_path>.Title
entry).
void setTitle(String iTitle)Sets the wizard's title.
Calling this method sets programmatically the title. This should
be reserved for cases where the title can only be determined by dynamic
means.
The standard way of defining components messages is using CATNls catalog
files (supports NLS).
iTitle
String getImage()Returns the wizard image URI.
void setImage(String iImage)Sets the wizard image URI. There is no default image.
iImage
resources/graphic
directory of the runtime view, or a full URL to an image resource. A null
value unsets the wizard image.String getPosition()Returns the current displayed child name.
void setPosition(String iPosition)Sets the current displayed child from its name.
iPosition
void moveNext()Helper to move to next position (that is the next child component).
void movePrevious()Helper to move to previous position (that is the previous child component).
CATNotification getPreviousNotification()Returns the previous button activated notification.
This notification is sent when the wizard previous button is pressed.
CATNotification getNextNotification()Returns the next button activated notification.
This notification is sent when the wizard next or finish button is pressed.
CATNotification getCancelNotification()Returns the cancel button activated notification.
This notification is sent when the wizard cancel button is pressed.