Class EventDriver

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      protected class  EventDriver.Dispatcher
      Class used fot execution of an event through the dispatching thread.
    • Constructor Summary

      Constructors 
      Constructor Description
      EventDriver()
      Constructs an EventDriver object suporting ComponentOperator.
      EventDriver​(java.lang.String[] supported)
      Constructs an EventDriver object.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      protected void checkVisibility​(java.awt.Component component)
      Checks component visibility.
      void dispatchEvent​(java.awt.Component comp, java.awt.AWTEvent event)
      Dispatches an event to the component.
      • Methods inherited from class java.lang.Object

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

      • EventDriver

        public EventDriver​(java.lang.String[] supported)
        Constructs an EventDriver object.
        Parameters:
        supported - an array of supported class names
      • EventDriver

        public EventDriver()
        Constructs an EventDriver object suporting ComponentOperator.
    • Method Detail

      • dispatchEvent

        public void dispatchEvent​(java.awt.Component comp,
                                  java.awt.AWTEvent event)
        Dispatches an event to the component.
        Parameters:
        comp - Component to dispatch events to.
        event - an event to dispatch.
      • checkVisibility

        protected void checkVisibility​(java.awt.Component component)
        Checks component visibility.
        Parameters:
        component - a component.