1 2 10 package com.teamkonzept.web; 11 12 import com.teamkonzept.lib.TKException; 13 14 public interface TKEventHandler 15 { 16 17 public void handleEvent(TKEvent evt) throws TKException; 18 19 20 public boolean isHandler(TKEvent evt); 21 22 public void addEventHandler(TKEventHandler handler); 23 public void removeEventHandler(TKEventHandler handler); 24 25 26 public void setHandleEvents(TKEvent[] events); 27 28 29 public TKEvent[] getHandleEvents(); 30 31 37 public abstract TKEvent createEvent (TKHttpInterface http); 38 39 } 40 | Popular Tags |