API Overview API Index Package Overview Direct link to this page
JDK 1.6
  org.w3c.dom.events. MutationEvent View Source
Author(s)
Since
DOM Level 2
Version
Serial
Hierarchy
 Event
      MutationEvent
Subinterfaces
Description
public interface MutationEvent
  The MutationEvent interface provides specific contextual information associated with Mutation events.
See also:   
Methods
Hide/Show inherited methods
public short getAttrChange ()
  attrChange indicates the type of change which triggered the DOMAttrModified event.
public String getAttrName ()
attrName indicates the name of the changed Attr node in a DOMAttrModified event.
public String getNewValue ()
newValue indicates the new value of the Attr node in DOMAttrModified events, and of the CharacterData node in DOMCharacterDataModified events.
public String getPrevValue ()
prevValue indicates the previous value of the Attr node in DOMAttrModified events, and of the CharacterData node in DOMCharacterDataModified events.
public Node getRelatedNode ()
  relatedNode is used to identify a secondary node related to a mutation event.
public void initMutationEvent (String typeArg, boolean canBubbleArg, boolean cancelableArg, Node relatedNodeArg, String prevValueArg, String newValueArg, String attrNameArg, short attrChangeArg)
  The initMutationEvent method is used to initialize the value of a MutationEvent created through the DocumentEvent interface.
Fields
Hide/Show inherited fields
publicfinalstatic short ADDITION = "2"
The Attr was just added.
publicfinalstatic short AT_TARGET = "2" [Inherited From Event]
The event is currently being evaluated at the target EventTarget.
publicfinalstatic short BUBBLING_PHASE = "3" [Inherited From Event]
The current event phase is the bubbling phase.
publicfinalstatic short CAPTURING_PHASE = "1" [Inherited From Event]
The current event phase is the capturing phase.
publicfinalstatic short MODIFICATION = "1"
The Attr was modified in place.
publicfinalstatic short REMOVAL = "3"
The Attr was just removed.
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar