KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > myfaces > examples > calendarexample > DateHolder


1 /*
2  * Copyright 2004 The Apache Software Foundation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16 package org.apache.myfaces.examples.calendarexample;
17
18 import java.util.Date JavaDoc;
19 import java.util.List JavaDoc;
20 import java.util.ArrayList JavaDoc;
21 import java.io.Serializable JavaDoc;
22
23 /**
24  * DOCUMENT ME!
25  * @author Martin Marinschek (latest modification by $Author: matzew $)
26  * @version $Revision: 1.1 $ $Date: 2005/03/24 16:47:10 $
27  */

28 public class DateHolder implements Serializable JavaDoc
29 {
30     private Date JavaDoc _date = new Date JavaDoc();
31     private transient List JavaDoc _dates;
32
33     public Date JavaDoc getDate()
34     {
35         return _date;
36     }
37
38     public void setDate(Date JavaDoc date)
39     {
40         _date = date;
41     }
42
43     public List JavaDoc getDates()
44     {
45         if(_dates == null)
46         {
47             _dates = new ArrayList JavaDoc();
48
49             for(int i=0; i<3; i++)
50                 _dates.add(new DateHolder());
51         }
52
53         return _dates;
54     }
55
56     public void setDates(List JavaDoc dates)
57     {
58         _dates = dates;
59     }
60 }
61
Popular Tags