| java.lang.Object org.apache.xerces.dom.events.EventImpl org.apache.xerces.dom.events.MutationEventImpl
MutationEventImpl | public class MutationEventImpl extends EventImpl implements MutationEvent(Code) | | An implementation of the DOM Level 2 MutationEvent interface.
version: $Id: MutationEventImpl.java 533531 2007-04-29 17:24:58Z mrglavas $ |
Method Summary | |
public short | getAttrChange() attrChange indicates the type of change which triggered
the DOMAttrModified event. | public String | getAttrName() the name of the Attr whichchanged, for DOMAttrModified events. | public String | getNewValue() | public String | getPrevValue() | public Node | getRelatedNode() a Node related to this event, other than the target that thenode was dispatched to. | public void | initMutationEvent(String typeArg, boolean canBubbleArg, boolean cancelableArg, Node relatedNodeArg, String prevValueArg, String newValueArg, String attrNameArg, short attrChangeArg) Initialize a mutation event, or overwrite the event's current
settings with new values of the parameters. |
DOM_ATTR_MODIFIED | final public static String DOM_ATTR_MODIFIED(Code) | | |
DOM_CHARACTER_DATA_MODIFIED | final public static String DOM_CHARACTER_DATA_MODIFIED(Code) | | |
DOM_NODE_INSERTED | final public static String DOM_NODE_INSERTED(Code) | | |
DOM_NODE_INSERTED_INTO_DOCUMENT | final public static String DOM_NODE_INSERTED_INTO_DOCUMENT(Code) | | |
DOM_NODE_REMOVED | final public static String DOM_NODE_REMOVED(Code) | | |
DOM_NODE_REMOVED_FROM_DOCUMENT | final public static String DOM_NODE_REMOVED_FROM_DOCUMENT(Code) | | |
DOM_SUBTREE_MODIFIED | final public static String DOM_SUBTREE_MODIFIED(Code) | | |
attrChange | public short attrChange(Code) | | |
getAttrChange | public short getAttrChange()(Code) | | attrChange indicates the type of change which triggered
the DOMAttrModified event. The values can be MODIFICATION
, ADDITION , or REMOVAL .
|
getAttrName | public String getAttrName()(Code) | | the name of the Attr whichchanged, for DOMAttrModified events. Undefined for others. |
getNewValue | public String getNewValue()(Code) | | the new string value of the Attr for DOMAttrModified events, orof the CharacterData node for DOMCharDataModifed events.Undefined for others. |
getPrevValue | public String getPrevValue()(Code) | | the previous string value of the Attr for DOMAttrModified events, orof the CharacterData node for DOMCharDataModifed events.Undefined for others. |
getRelatedNode | public Node getRelatedNode()(Code) | | a Node related to this event, other than the target that thenode was dispatched to. For DOMNodeRemoved, it is the node whichwas removed. No other uses are currently defined. |
initMutationEvent | public void initMutationEvent(String typeArg, boolean canBubbleArg, boolean cancelableArg, Node relatedNodeArg, String prevValueArg, String newValueArg, String attrNameArg, short attrChangeArg)(Code) | | Initialize a mutation event, or overwrite the event's current
settings with new values of the parameters.
|
|
|