BEA Systems, Inc.

WebLogic Server 8.1 API Reference

weblogic.apache.xerces.dom.events
Class MutationEventImpl

java.lang.Object
  |
  +--weblogic.apache.xerces.dom.events.EventImpl
        |
        +--weblogic.apache.xerces.dom.events.MutationEventImpl

public class MutationEventImpl
extends EventImpl
implements org.w3c.dom.events.MutationEvent


Field Summary
 short attrChange
           
static java.lang.String DOM_ATTR_MODIFIED
           
static java.lang.String DOM_CHARACTER_DATA_MODIFIED
           
static java.lang.String DOM_NODE_INSERTED
           
static java.lang.String DOM_NODE_INSERTED_INTO_DOCUMENT
           
static java.lang.String DOM_NODE_REMOVED
           
static java.lang.String DOM_NODE_REMOVED_FROM_DOCUMENT
           
static java.lang.String DOM_SUBTREE_MODIFIED
           
 
Fields inherited from class weblogic.apache.xerces.dom.events.EventImpl
bubbles, cancelable, currentTarget, eventPhase, initialized, preventDefault, stopPropagation, target, timeStamp, type
 
Constructor Summary
MutationEventImpl()
           
 
Method Summary
 short getAttrChange()
          attrChange indicates the type of change which triggered the DOMAttrModified event.
 java.lang.String getAttrName()
           
 java.lang.String getNewValue()
           
 java.lang.String getPrevValue()
           
 org.w3c.dom.Node getRelatedNode()
           
 void initMutationEvent(java.lang.String typeArg, boolean canBubbleArg, boolean cancelableArg, org.w3c.dom.Node relatedNodeArg, java.lang.String prevValueArg, java.lang.String newValueArg, java.lang.String attrNameArg, short attrChangeArg)
          Initialize a mutation event, or overwrite the event's current settings with new values of the parameters.
 
Methods inherited from class weblogic.apache.xerces.dom.events.EventImpl
getBubbles, getCancelable, getCurrentTarget, getEventPhase, getTarget, getTimeStamp, getType, initEvent, preventDefault, stopPropagation
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

attrChange

public short attrChange

DOM_SUBTREE_MODIFIED

public static final java.lang.String DOM_SUBTREE_MODIFIED

DOM_NODE_INSERTED

public static final java.lang.String DOM_NODE_INSERTED

DOM_NODE_REMOVED

public static final java.lang.String DOM_NODE_REMOVED

DOM_NODE_REMOVED_FROM_DOCUMENT

public static final java.lang.String DOM_NODE_REMOVED_FROM_DOCUMENT

DOM_NODE_INSERTED_INTO_DOCUMENT

public static final java.lang.String DOM_NODE_INSERTED_INTO_DOCUMENT

DOM_ATTR_MODIFIED

public static final java.lang.String DOM_ATTR_MODIFIED

DOM_CHARACTER_DATA_MODIFIED

public static final java.lang.String DOM_CHARACTER_DATA_MODIFIED
Constructor Detail

MutationEventImpl

public MutationEventImpl()
Method Detail

getAttrName

public java.lang.String getAttrName()
Specified by:
getAttrName in interface org.w3c.dom.events.MutationEvent

Returns:
the name of the Attr which changed, for DOMAttrModified events. Undefined for others.

getAttrChange

public short getAttrChange()
attrChange indicates the type of change which triggered the DOMAttrModified event. The values can be MODIFICATION , ADDITION, or REMOVAL.
Specified by:
getAttrChange in interface org.w3c.dom.events.MutationEvent


getNewValue

public java.lang.String getNewValue()
Specified by:
getNewValue in interface org.w3c.dom.events.MutationEvent

Returns:
the new string value of the Attr for DOMAttrModified events, or of the CharacterData node for DOMCharDataModifed events. Undefined for others.

getPrevValue

public java.lang.String getPrevValue()
Specified by:
getPrevValue in interface org.w3c.dom.events.MutationEvent

Returns:
the previous string value of the Attr for DOMAttrModified events, or of the CharacterData node for DOMCharDataModifed events. Undefined for others.

getRelatedNode

public org.w3c.dom.Node getRelatedNode()
Specified by:
getRelatedNode in interface org.w3c.dom.events.MutationEvent

Returns:
a Node related to this event, other than the target that the node was dispatched to. For DOMNodeRemoved, it is the node which was removed. No other uses are currently defined.

initMutationEvent

public void initMutationEvent(java.lang.String typeArg,
                              boolean canBubbleArg,
                              boolean cancelableArg,
                              org.w3c.dom.Node relatedNodeArg,
                              java.lang.String prevValueArg,
                              java.lang.String newValueArg,
                              java.lang.String attrNameArg,
                              short attrChangeArg)
Initialize a mutation event, or overwrite the event's current settings with new values of the parameters.
Specified by:
initMutationEvent in interface org.w3c.dom.events.MutationEvent


Documentation is available at
http://download.oracle.com/docs/cd/E13222_01/wls/docs81b