Save This Page
Home » openjdk-7 » com.sun.org.apache.xerces.internal » dom » events » [javadoc | source]
com.sun.org.apache.xerces.internal.dom.events
public class: MutationEventImpl [javadoc | source]
java.lang.Object
   com.sun.org.apache.xerces.internal.dom.events.EventImpl
      com.sun.org.apache.xerces.internal.dom.events.MutationEventImpl

All Implemented Interfaces:
    MutationEvent, Event

Field Summary
 Node relatedNode     
 String prevValue     
 String newValue     
 String attrName     
public  short attrChange     
public static final  String DOM_SUBTREE_MODIFIED     
public static final  String DOM_NODE_INSERTED     
public static final  String DOM_NODE_REMOVED     
public static final  String DOM_NODE_REMOVED_FROM_DOCUMENT     
public static final  String DOM_NODE_INSERTED_INTO_DOCUMENT     
public static final  String DOM_ATTR_MODIFIED     
public static final  String DOM_CHARACTER_DATA_MODIFIED     
Fields inherited from com.sun.org.apache.xerces.internal.dom.events.EventImpl:
type,  target,  currentTarget,  eventPhase,  initialized,  bubbles,  cancelable,  stopPropagation,  preventDefault,  timeStamp
Method from com.sun.org.apache.xerces.internal.dom.events.MutationEventImpl Summary:
getAttrChange,   getAttrName,   getNewValue,   getPrevValue,   getRelatedNode,   initMutationEvent
Methods from com.sun.org.apache.xerces.internal.dom.events.EventImpl:
getBubbles,   getCancelable,   getCurrentTarget,   getEventPhase,   getTarget,   getTimeStamp,   getType,   initEvent,   preventDefault,   stopPropagation
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from com.sun.org.apache.xerces.internal.dom.events.MutationEventImpl Detail:
 public short getAttrChange() 
    attrChange indicates the type of change which triggered the DOMAttrModified event. The values can be MODIFICATION , ADDITION, or REMOVAL.
 public String getAttrName() 
 public String getNewValue() 
 public String getPrevValue() 
 public Node getRelatedNode() 
 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.