Packagedom.events
Interfacepublic interface DocumentEventGroup

Introduced in: DOM 3 Events 

The DocumentEventGroup interface provides a mechanism by which the user can create an EventGroup of a type supported by the implementation. It is expected that the DocumentEvent interface will be implemented on the same object which implements the Documentinterface in an implementation which supports the EventGroupextension.

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: DocumentEventGroup


Public Methods
 MethodDefined By
  
DOM 3 Events createEventGroup():EventGroup
This method creates a new EventGroup for use in the addEventListener and removeEventListener methods of the EventTargetGroup interface.
DocumentEventGroup
Method Detail
DOM 3 Events createEventGroup()method
public function createEventGroup():EventGroup

Introduced in: DOM 3 Events 

This method creates a new EventGroup for use in the addEventListener and removeEventListener methods of the EventTargetGroup interface.

Returns
EventGroup — The newly created EventGroup.

See also