Packagedom.events
Interfacepublic interface EventTargetGroup

Introduced in: DOM 3 Events 

The EventTargetGroup interface is implemented by the same set of objects that implement the EventTarget interface, namely all EventTargets in in implementation which supports the Event model and the EventGroup extension.

Note: This is from DOM 3 Events Working Draft 10 (April 2001) and has since been deprecated in Working Draft 21 (December 2007)

See also

W3C - DOM 3 Events: EventTargetGroup


Public Methods
 MethodDefined By
  
DOM 3 Events addEventListener(type:DOMString, listener:EventListener, useCapture:Boolean, eventGroup:EventGroup):void
This method is equivalent to the addEventListener method of the EventTarget interface, with the exception of the added eventGroup parameter.
EventTargetGroup
  
DOM 3 Events removeEventListener(type:DOMString, listener:EventListener, useCapture:Boolean, eventGroup:EventGroup):void
This method is equivalent to the removeEventListener method of the EventTarget interface, with the exception of the added eventGroup parameter.
EventTargetGroup
Method Detail
DOM 3 Events addEventListener()method
public function addEventListener(type:DOMString, listener:EventListener, useCapture:Boolean, eventGroup:EventGroup):void

Introduced in: DOM 3 Events 

This method is equivalent to the addEventListener method of the EventTarget interface, with the exception of the added eventGroup parameter. The listener is registered with this EventGroup associated.

Parameters

type:DOMString
 
listener:EventListener
 
useCapture:Boolean
 
eventGroup:EventGroup — The EventGroup to associate with the listener.

See also

DOM 3 Events removeEventListener()method 
public function removeEventListener(type:DOMString, listener:EventListener, useCapture:Boolean, eventGroup:EventGroup):void

Introduced in: DOM 3 Events 

This method is equivalent to the removeEventListener method of the EventTarget interface, with the exception of the added eventGroup parameter. The listener registered with this EventGroup associated is removed.

Parameters

type:DOMString
 
listener:EventListener
 
useCapture:Boolean
 
eventGroup:EventGroup — The EventGroup to associate with the listener.

See also