1 12 13 package org.w3c.dom.events; 14 15 import org.w3c.dom.views.AbstractView; 16 17 23 public interface UIEvent extends Event { 24 28 public AbstractView getView(); 29 30 34 public int getDetail(); 35 36 52 public void initUIEvent(String typeArg, 53 boolean canBubbleArg, 54 boolean cancelableArg, 55 AbstractView viewArg, 56 int detailArg); 57 58 } 59 | Popular Tags |