01: package com.xoetrope.task;
02:
03: /**
04: * <p>Description: An interface used by the XCallback class</p>
05: *
06: * <p> Copyright (c) Xoetrope Ltd., 2001-2006, This software is licensed under
07: * the GNU Public License (GPL), please see license.txt for more details. If
08: * you make commercial use of this software you must purchase a commercial
09: * license from Xoetrope.</p>
10: * <p> $Revision: 1.4 $</p>
11: * @see com.xoetrope.task.XCallback
12: */
13: public interface XCallbackListener {
14: /**
15: * The method that is called by an XCallback object
16: * @see com.xoetrope.miniui.XCallback
17: */
18: public void callback();
19: }
|