IBM Rational Functional Tester
Version 8.1.1000
IBM Rational Functional Tester Proxy SDK Reference

Project Version 2.3

com.rational.test.ft.domain
Interface IMouseEventInfo


public interface IMouseEventInfo

This interface is used during Action Recording. The proxy method ProcessMouseEvent is called, and it is passed an IMouseActionInfo. By calling IMouseActionInfo.getMouseEventInfo(), the proxy can access information about the sequence of events that comprise the composite mouse action.


Method Summary
 int getModifiers()
          Determines which button is down and which shift keys are down.
 int getTime()
          Gets the event timestamp.
 int getX()
          Returns the screen-relative x-coordinate where the mouse click occurred.
 int getY()
          Returns the screen-relative y-coordinate where the mouse click occurred.
 boolean isDown()
          Determines whether this is a mouse button down or mouse button up event.
 

Method Detail

isDown

boolean isDown()
Determines whether this is a mouse button down or mouse button up event.

Since:
RFT1.0

getModifiers

int getModifiers()
Determines which button is down and which shift keys are down.

Since:
RFT1.0

getTime

int getTime()
Gets the event timestamp. This timestamp is in milliseconds and can be compared to event timestamps within this recording.

Since:
RFT1.0

getX

int getX()
Returns the screen-relative x-coordinate where the mouse click occurred.

Since:
RFT1.0

getY

int getY()
Returns the screen-relative y-coordinate where the mouse click occurred.

Since:
RFT1.0