Package com.zerog.ia.test.fixtures
Class EventLine
- java.lang.Object
-
- com.zerog.ia.test.fixtures.EventLine
-
public class EventLine extends java.lang.ObjectThe
EventLineclass 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 booleanequals(java.lang.Object obj)java.lang.StringgetId()Returns the event identification.java.awt.PointgetLocationOnScreen()Returns the location on the screen where the event occurred.java.lang.StringgetParams()Returns the event parameters.inthashCode()
-
-
-
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:
hashCodein classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
-