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:
09: package com.gwtext.client.core;
10:
11: /**
12: * Generic callback interface
13: */
14: public interface Function {
15: /**
16: * The callback method.
17: */
18: void execute();
19: }
|