Class ApplicationEvent

  • All Implemented Interfaces:
    java.io.Serializable
    Direct Known Subclasses:
    BeanContextEvent

    public class ApplicationEvent
    extends java.util.EventObject
    An ApplicationEvent is a user specified event object.
    Since:
    1.0
    See Also:
    Serialized Form
    • Field Summary

      • Fields inherited from class java.util.EventObject

        source
    • Constructor Summary

      Constructors 
      Constructor Description
      ApplicationEvent​(java.lang.Object source)
      Constructs a prototypical Event.
    • Method Summary

      • Methods inherited from class java.util.EventObject

        getSource, toString
      • Methods inherited from class java.lang.Object

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

      • ApplicationEvent

        public ApplicationEvent​(java.lang.Object source)
        Constructs a prototypical Event.
        Parameters:
        source - The object on which the Event initially occurred.
        Throws:
        java.lang.IllegalArgumentException - if source is null.