Class DOMCustomEvent

    • Field Detail

      • detail

        protected java.lang.Object detail
        The custom detail associated with this event.
    • Constructor Detail

      • DOMCustomEvent

        public DOMCustomEvent()
    • Method Detail

      • getDetail

        public java.lang.Object getDetail()
        Returns the custom detail of this event.
        Specified by:
        getDetail in interface CustomEvent
      • initCustomEventNS

        public void initCustomEventNS​(java.lang.String namespaceURIArg,
                                      java.lang.String typeArg,
                                      boolean canBubbleArg,
                                      boolean cancelableArg,
                                      java.lang.Object detailArg)
        Initializes this custom event.
        Specified by:
        initCustomEventNS in interface CustomEvent
        Parameters:
        namespaceURIArg - Refer to the Event.initEventNS() method for a description of this parameter.
        typeArg - Refer to the Event.initEventNS() method for a description of this parameter.
        canBubbleArg - Refer to the Event.initEventNS() method for a description of this parameter.
        cancelableArg - Refer to the Event.initEventNS() method for a description of this parameter.
        detailArg - Specifies CustomEvent.detail. This value may be null.