KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > org > w3c > dom > events > MutationEvent

org.w3c.dom.events
Interface MutationEvent

All Superinterfaces:
Event
See Also:
Top Examples, Source Code

static final short ADDITION
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


short getAttrChange()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


String getAttrName()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


String getNewValue()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


String getPrevValue()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


Node getRelatedNode()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void initMutationEvent(String typeArg,
                       boolean canBubbleArg,
                       boolean cancelableArg,
                       Node relatedNodeArg,
                       String prevValueArg,
                       String newValueArg,
                       String attrNameArg,
                       short attrChangeArg)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


static final short MODIFICATION
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


static final short REMOVAL
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags