Package com.zerog.ia.test.fixtures
Class EventLine
- java.lang.Object
-
- com.zerog.ia.test.fixtures.EventLine
-
public class EventLine extends java.lang.Object
The
EventLine
class represents the occurrence of GUI events and their parameters. It's designed to be used in conjunction with the GUIAutomationFixture class.
-
-
Constructor Summary
Constructors Constructor Description EventLine(java.lang.String line)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
java.lang.String
getId()
Returns the event identification.java.awt.Point
getLocationOnScreen()
Returns the location on the screen where the event occurred.java.lang.String
getParams()
Returns the event parameters.int
hashCode()
-
-
-
Method Detail
-
getId
public java.lang.String getId()
Returns the event identification.
- Returns:
- Event identification
-
getParams
public java.lang.String getParams()
Returns the event parameters.
- Returns:
- Event parameters
-
getLocationOnScreen
public java.awt.Point getLocationOnScreen()
Returns the location on the screen where the event occurred.
- Returns:
- Point Event location
- See Also:
Point
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
-