24 lines
662 B
Java
24 lines
662 B
Java
package org.w3c.dom.events;
|
|
|
|
import org.w3c.dom.Node;
|
|
|
|
public interface MutationEvent extends Event {
|
|
public static final short ADDITION = (short) 2;
|
|
public static final short MODIFICATION = (short) 1;
|
|
public static final short REMOVAL = (short) 3;
|
|
|
|
short getAttrChange();
|
|
|
|
String getAttrName();
|
|
|
|
String getNewValue();
|
|
|
|
String getPrevValue();
|
|
|
|
Node getRelatedNode();
|
|
|
|
void initMutationEvent(String str, boolean z, boolean z2, Node node, String str2, String str3, String str4, short s);
|
|
|
|
void initMutationEventNS(String str, String str2, boolean z, boolean z2, Node node, String str3, String str4, String str5, short s);
|
|
}
|