All Packages Class Hierarchy This Package Previous Next Index
Class com.ibm.eNetwork.beans.HOD.event.GUIEvent
java.lang.Object
|
+----java.util.EventObject
|
+----com.ibm.eNetwork.beans.HOD.event.HODEvent
|
+----com.ibm.eNetwork.beans.HOD.event.GUIEvent
- public class GUIEvent
- extends HODEvent
The GUI event. This event is fired by Session to indicate that a request
has been made to update the appearance of Screen. For example, Session
will fire a GUIEvent with a type of RULE to cause Screen
to display rule lines.
All event types are used by Screen, except for JUMP
which must be handled by a separate GUI listener that is responsible for
managing multiple Screens.
- See Also:
- GUIListener, Session, Terminal, Screen
-
ALTCSR
- Alternate Cursor GUI event.
-
CLEARRECT
- Clear GUI event.
-
COPY
- Copy GUI event.
-
COPYALL
- Copy ALL GUI event.
-
COPYAPPEND
- Copy GUI event.
-
CUT
- Cut GUI event.
-
DBCSINP
- DBCS Input GUI event.
-
JUMP
- Jump GUI event.
-
PASTE
- Paste GUI event.
-
PASTENEXT
- Paste GUI event.
-
RULE
- Rule GUI event.
-
SELECTALL
- Select All GUI event.
-
STARTMACRO
- Rule GUI event.
-
GUIEvent(Object, String)
- Constructs a new GUI event with the specified source and type.
-
GUIEvent(Object, String, String, boolean)
-
-
getOption()
- Returns the option.
-
getParam()
- Returns the parameter.
-
getType()
- Returns the event type.
ALTCSR
public static String ALTCSR
- Alternate Cursor GUI event. This event causes the screen
to toggle between an underscore cursor and a block cursor.
CUT
public static String CUT
- Cut GUI event. This event causes the screen contents to be "cut" to the
system clipboard.
CLEARRECT
public static String CLEARRECT
- Clear GUI event. This event causes the screen contents to be "cut"
without affecting the clipboard.
COPY
public static String COPY
- Copy GUI event. This event causes the screen contents to be "copied" to the
system clipboard.
COPYALL
public static String COPYALL
- Copy ALL GUI event. This event causes the entire screen contents to be "copied" to the
system clipboard.
COPYAPPEND
public static String COPYAPPEND
- Copy GUI event. This event causes the entire screen contents to be "copied" to the
system clipboard appending to whatever is already on the clipboard.
DBCSINP
public static String DBCSINP
- DBCS Input GUI event. This event causes the screen to display a DBCS input
text field (3250 and 5250 DBCS sessions only).
JUMP
public static String JUMP
- Jump GUI event. This event lets a registered GUI listener know that the user
pressed the jump key. The GUI listener must handle displaying the next
available screen.
PASTE
public static String PASTE
- Paste GUI event. This event causes the system clipboard contents to be
"pasted" into the screen.
PASTENEXT
public static String PASTENEXT
- Paste GUI event. This event causes the system clipboard contents to be
"pasted" into the screen, starting from the last pasted line.
RULE
public static String RULE
- Rule GUI event. This event causes rule lines to be displayed on the screen.
SELECTALL
public static String SELECTALL
- Select All GUI event. This event causes the contents of the current text field
or label to be selected.
STARTMACRO
public static String STARTMACRO
- Rule GUI event. This event causes execution of macro.
GUIEvent
public GUIEvent(Object source,
String type)
- Constructs a new GUI event with the specified source and type.
GUIEvent
public GUIEvent(Object source,
String type,
String param,
boolean option)
getType
public String getType()
- Returns the event type.
getParam
public String getParam()
- Returns the parameter.
getOption
public boolean getOption()
- Returns the option.
All Packages Class Hierarchy This Package Previous Next Index