KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > ivata > groupware > business > calendar > struts > IndexFormConstants


1 /*
2  * Copyright (c) 2001 - 2005 ivata limited.
3  * All rights reserved.
4  * -----------------------------------------------------------------------------
5  * ivata groupware may be redistributed under the GNU General Public
6  * License as published by the Free Software Foundation;
7  * version 2 of the License.
8  *
9  * These programs are free software; you can redistribute them and/or
10  * modify them under the terms of the GNU General Public License
11  * as published by the Free Software Foundation; version 2 of the License.
12  *
13  * These programs are distributed in the hope that they will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16  *
17  * See the GNU General Public License in the file LICENSE.txt for more
18  * details.
19  *
20  * If you would like a copy of the GNU General Public License write to
21  *
22  * Free Software Foundation, Inc.
23  * 59 Temple Place - Suite 330
24  * Boston, MA 02111-1307, USA.
25  *
26  *
27  * To arrange commercial support and licensing, contact ivata at
28  * http://www.ivata.com/contact.jsp
29  * -----------------------------------------------------------------------------
30  * $Log: IndexFormConstants.java,v $
31  * Revision 1.2 2005/04/09 17:19:18 colinmacleod
32  * Changed copyright text to GPL v2 explicitly.
33  *
34  * Revision 1.1.1.1 2005/03/10 17:47:42 colinmacleod
35  * Restructured ivata op around Hibernate/PicoContainer.
36  * Renamed ivata groupware.
37  *
38  * Revision 1.3 2004/03/21 21:16:22 colinmacleod
39  * Shortened name to ivata op.
40  *
41  * Revision 1.2 2004/02/01 22:07:29 colinmacleod
42  * Added full names to author tags
43  *
44  * Revision 1.1.1.1 2004/01/27 20:58:22 colinmacleod
45  * Moved ivata openportal to SourceForge..
46  *
47  * Revision 1.2 2003/10/15 13:57:23 colin
48  * fixing for XDoclet
49  *
50  * Revision 1.1 2003/02/24 19:09:22 colin
51  * moved to business
52  *
53  * Revision 1.2 2003/02/13 08:45:42 colin
54  * conversion to Struts/popups
55  *
56  * Revision 1.1 2003/02/04 17:50:17 colin
57  * first version in CVS
58  *
59  * Revision 1.1 2003/02/04 17:41:16 colin
60  * first version in CVS
61  * -----------------------------------------------------------------------------
62  */

63 package com.ivata.groupware.business.calendar.struts;
64
65
66 /**
67  * <p>Constants used to identify view styles for calendar.</p>
68  *
69  * @since 2003-02-02
70  * @author Colin MacLeod
71  * <a HREF='mailto:colin.macleod@ivata.com'>colin.macleod@ivata.com</a>
72  * @version $Revision: 1.2 $
73  *
74  */

75 public class IndexFormConstants {
76     /**
77      * <p>Represents day view.</p>
78      */

79     public static final Integer JavaDoc VIEW_DAY = new Integer JavaDoc(0);
80     /**
81      * <p>Represents working week, or 5 day view.</p>
82      */

83     public static final Integer JavaDoc VIEW_WORK_WEEK = new Integer JavaDoc(1);
84     /**
85      * <p>Represents week, or 7 day view.</p>
86      */

87     public static final Integer JavaDoc VIEW_WEEK = new Integer JavaDoc(2);
88     /**
89      * <p>Represents month view.</p>
90      */

91     public static final Integer JavaDoc VIEW_MONTH = new Integer JavaDoc(3);
92     /**
93      * <p>Represents year view.</p>
94      */

95     public static final Integer JavaDoc VIEW_YEAR = new Integer JavaDoc(4);
96     /**
97      * <p>Represents a list view displaying recent and future events as a list.</p>
98      */

99     public static final Integer JavaDoc VIEW_LIST = new Integer JavaDoc(15);
100
101 }
102
Popular Tags