14 lines
361 B
Java
14 lines
361 B
Java
package org.w3c.dom.events;
|
|
|
|
import org.w3c.dom.views.AbstractView;
|
|
|
|
public interface UIEvent extends Event {
|
|
int getDetail();
|
|
|
|
AbstractView getView();
|
|
|
|
void initUIEvent(String str, boolean z, boolean z2, AbstractView abstractView, int i);
|
|
|
|
void initUIEventNS(String str, String str2, boolean z, boolean z2, AbstractView abstractView, int i);
|
|
}
|