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

Variable Index

 o ALTCSR
Alternate Cursor GUI event.
 o CLEARRECT
Clear Rect GUI event.
 o COPY
Copy GUI event.
 o COPYALL
Copy All GUI event.
 o COPYAPPEND
Copy Append GUI event.
 o CUT
Cut GUI event.
 o DBCSINP
DBCS Input GUI event.
 o JUMP
Jump GUI event.
 o PASTE
Paste GUI event.
 o PASTENEXT
Paste Next GUI event.
 o RULE
Rule GUI event.
 o SELECTALL
Select All GUI event.
 o STARTMACRO
Start Macro GUI event.

Constructor Index

 o GUIEvent(Object, String)
Constructs a new GUI event with the specified source and type.

Method Index

 o getOption()
Returns the option.
 o getParam()
Returns the parameter.
 o getType()
Returns the event type.

Variables

 o ALTCSR
 public static String ALTCSR
Alternate Cursor GUI event. This event causes the screen to toggle between an underscore cursor and a block cursor.

 o CUT
 public static String CUT
Cut GUI event. This event causes the screen contents to be "cut" to the system clipboard.

 o CLEARRECT
 public static String CLEARRECT
Clear Rect GUI event. This event causes the screen contents to be "cut" without affecting the clipboard.

 o COPY
 public static String COPY
Copy GUI event. This event causes the screen contents to be "copied" to the system clipboard.

 o COPYALL
 public static String COPYALL
Copy All GUI event. This event causes the entire screen contents to be "copied" to the system clipboard.

 o COPYAPPEND
 public static String COPYAPPEND
Copy Append GUI event. This event causes the entire screen contents to be "copied" to the system clipboard appending to whatever is already on the clipboard.

 o 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).

 o 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.

 o PASTE
 public static String PASTE
Paste GUI event. This event causes the system clipboard contents to be "pasted" into the screen.

 o PASTENEXT
 public static String PASTENEXT
Paste Next GUI event. This event causes the system clipboard contents to be "pasted" into the screen, starting from the last pasted line.

 o RULE
 public static String RULE
Rule GUI event. This event causes rule lines to be displayed on the screen.

 o SELECTALL
 public static String SELECTALL
Select All GUI event. This event causes the contents of the current text field or label to be selected.

 o STARTMACRO
 public static String STARTMACRO
Start Macro GUI event. This event causes execution of macro.

Constructors

 o GUIEvent
 public GUIEvent(Object source,
                 String type)
Constructs a new GUI event with the specified source and type.

Methods

 o getType
 public String getType()
Returns the event type.

 o getParam
 public String getParam()
Returns the parameter.

 o getOption
 public boolean getOption()
Returns the option.


All Packages  Class Hierarchy  This Package  Previous  Next  Index