01: package com.xoetrope.event;
02:
03: import java.util.Date;
04:
05: /**
06: * An interface used by the date controls in this package
07: *
08: * <p> Copyright (c) Xoetrope Ltd., 2001-2006, This software is licensed under
09: * the GNU Public License (GPL), please see license.txt for more details. If
10: * you make commercial use of this software you must purchase a commercial
11: * license from Xoetrope.</p>
12: * <p> $Revision: 1.2 $</p>
13: */
14: public interface XDateListener {
15: public void setDate(Date newDate);
16: }
|