01: package com.xoetrope.swing.date;
02:
03: import java.awt.Color;
04: import java.awt.geom.RoundRectangle2D;
05: import java.util.Calendar;
06:
07: /**
08: * A structure containing information about appointments to be shown on the
09: * XCalendarPanel
10: *
11: * <p> Copyright (c) Xoetrope Ltd., 2001-2006, This software is licensed under
12: * the GNU Public License (GPL), please see license.txt for more details. If
13: * you make commercial use of this software you must purchase a commercial
14: * license from Xoetrope.</p>
15: * <p> $Revision: 1.2 $</p>
16: */
17: public class XAppointment {
18: public String id;
19:
20: public Color bkColor;
21: public Color fgColor;
22:
23: public String title;
24:
25: public Calendar startTime;
26: public Calendar endTime;
27:
28: public RoundRectangle2D.Double location;
29: }
|