org.kde.koala
public class MutationEvent extends Event
UNKNOWN: Introduced in DOM Level 2
Constructor Summary | |
---|---|
protected | MutationEvent(Class dummy) |
MutationEvent() | |
MutationEvent(MutationEvent other) | |
MutationEvent(Event other) |
Method Summary | |
---|---|
short | attrChange()
attrChange indicates the type of change which triggered the
DOMAttrModified event. |
String | attrName()
attrName indicates the name of the changed Attr node in a
DOMAttrModified event. |
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. |
String | newValue()
newValue indicates the new value of the Attr node in DOMAttrModified
events, and of the CharacterData node in DOMCharDataModified events. |
String | prevValue()
prevValue indicates the previous value of the Attr node in
DOMAttrModified events, and of the CharacterData node in
DOMCharDataModified events. |
Node | relatedNode()
relatedNode is used to identify a secondary node related to a mutation
event. |
UNKNOWN: attrChange indicates the type of change which triggered the DOMAttrModified event.
UNKNOWN: attrName indicates the name of the changed Attr node in a DOMAttrModified event.
Parameters: typeArg Specifies the event type. canBubbleArg Specifies whether or not the event can bubble. cancelableArg Specifies whether or not the event's default action can be prevented. relatedNodeArg Specifies the Event's related Node. prevValueArg Specifies the Event's prevValue attribute. This value may be null. newValueArg Specifies the Event's newValue attribute. This value may be null. attrNameArg Specifies the Event's attrName attribute. This value may be null. attrChangeArg Specifies the Event's attrChange attribute
UNKNOWN: The initMutationEvent method is used to initialize the value of a MutationEvent created through the DocumentEvent interface.
UNKNOWN: newValue indicates the new value of the Attr node in DOMAttrModified events, and of the CharacterData node in DOMCharDataModified events.
UNKNOWN: prevValue indicates the previous value of the Attr node in DOMAttrModified events, and of the CharacterData node in DOMCharDataModified events.
UNKNOWN: relatedNode is used to identify a secondary node related to a mutation event.