Class 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()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • EventLine

        public EventLine​(java.lang.String line)
    • 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 class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object