All Packages Class Hierarchy This Package Previous Next Index
Class com.ibm.hi.customizer.beans.event.CustomScreenEvent
com.ibm.hi.customizer.beans.event.CustomEvent
|
+----com.ibm.hi.customizer.beans.event.CustomScreenEvent
- public class CustomScreenEvent
- extends CustomEvent
This event is fired by CustomTerminal to indicate that we have entered a
new screen, refreshed a screen, or exited a screen, as well as when the screen is
ready for interaction. The CustomScreenEvents contain the screen ID if the screen
is mapped, or null if not mapped.
The CustomScreenEvents are defined as follows:
- SCREEN_ENTER is fired when the host screen is available, prior
to running Get-to-the-Point. Dynamic components such as hotspots,
balls, and light pen fields, have not been built yet and are not
ready for interaction.
- SCREEN_REFRESH is fired when the current screen is refreshed, prior
to running Get-to-the-Point.
- SCREEN_EXIT is fired when the current screen is exiting, prior
to running Get-to-the-Point.
- SCREEN_DISCONNECT is fired when the session is disconnected. No
custom components are available after this event is fired, until the
next SCREEN_ENTER event.
- SCREEN_READY is fired prior to displaying the screen. All
custom components are available for interaction.
- See Also:
- CustomListener
-
SCREEN_DISCONNECT
- Static screen type for screen disconnect
-
SCREEN_ENTER
- Static screen type for screen enter
-
SCREEN_EXIT
- Static screen type for screen exit
-
SCREEN_READY
- Static screen type for screen ready
-
SCREEN_REFRESH
- Static screen type for screen refresh
-
CustomScreenEvent(Object, int, String)
- Constructs a new CustomScreenEvent with the specified source, type, and
ID.
-
getScreenType()
- Returns the screen type.
SCREEN_ENTER
public static final int SCREEN_ENTER
- Static screen type for screen enter
SCREEN_REFRESH
public static final int SCREEN_REFRESH
- Static screen type for screen refresh
SCREEN_EXIT
public static final int SCREEN_EXIT
- Static screen type for screen exit
SCREEN_DISCONNECT
public static final int SCREEN_DISCONNECT
- Static screen type for screen disconnect
SCREEN_READY
public static final int SCREEN_READY
- Static screen type for screen ready
CustomScreenEvent
public CustomScreenEvent(Object source,
int type,
String id)
- Constructs a new CustomScreenEvent with the specified source, type, and
ID.
getScreenType
public int getScreenType()
- Returns the screen type.
All Packages Class Hierarchy This Package Previous Next Index