10 lines
204 B
Java
10 lines
204 B
Java
package org.w3c.dom.events;
|
|
|
|
import org.w3c.dom.DOMException;
|
|
|
|
public interface DocumentEvent {
|
|
boolean canDispatch(String str, String str2);
|
|
|
|
Event createEvent(String str) throws DOMException;
|
|
}
|