All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.ibm.eNetwork.beans.HOD.event.PSEvent

java.lang.Object
   |
   +----java.util.EventObject
           |
           +----com.ibm.eNetwork.beans.HOD.event.HODEvent
                   |
                   +----com.ibm.eNetwork.beans.HOD.event.PSEvent

public class PSEvent
extends HODEvent
The presentation space event. This event is fired to PSListeners when something in the presentation space has changed. The change may be a new cursor location, a new screen from the host, keys typed by the user, or changes resulting from API method calls.

This event contains a dirty area. The dirty area is the start and end locations of the data that changed within the presentation space. Use the getStart() and getEnd() methods to determine the dirty area for this event.

See Also:
PSListener, Session, Terminal, ECLPS


Constructor Index

 o PSEvent(Object, ECLPSEvent)
Constructs a new PSEvent with the specified source and based on the specified ECLPSEvent.

Method Index

 o getCursorVisible()
Returns whether the cursor is visible.
 o getEnd()
Returns the end of the dirty area.
 o getPS()
Returns the base ECLPS object associated with this event.
 o getStart()
Returns the start of the dirty area.

Constructors

 o PSEvent
 public PSEvent(Object src,
                ECLPSEvent evt)
Constructs a new PSEvent with the specified source and based on the specified ECLPSEvent.

See Also:
ECLPSEvent

Methods

 o getPS
 public final ECLPS getPS()
Returns the base ECLPS object associated with this event.

See Also:
ECLPS

 o getStart
 public int getStart()
Returns the start of the dirty area. This is the linear position of the first character from the start of the presentation space that has changed.

 o getEnd
 public int getEnd()
Returns the end of the dirty area. This is the linear position of the last character from the end of the presentation space that has changed.

 o getCursorVisible
 public boolean getCursorVisible()
Returns whether the cursor is visible.


All Packages  Class Hierarchy  This Package  Previous  Next  Index