01: /*
02: * GWT-Ext Widget Library
03: * Copyright(c) 2007-2008, GWT-Ext.
04: * licensing@gwt-ext.com
05: *
06: * http://www.gwt-ext.com/license
07: */
08: package com.gwtext.client.core;
09:
10: /**
11: * Event callback interface. The {@link EventObject} as a result of the event is passed in the callback.
12: *
13: * @see com.gwtext.client.core.BaseElement#addListener(String, EventCallback)
14: */
15: public interface EventCallback {
16:
17: /**
18: * Callback method.
19: *
20: * @param e the event object
21: */
22: void execute(EventObject e);
23: }
|