KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jruby > javasupport > test > DateHolder


1 /*
2  * DateHolder.java
3  *
4  * Created on December 18, 2006, 11:00 PM
5  *
6  */

7
8 package org.jruby.javasupport.test;
9
10 import java.util.Date JavaDoc;
11
12 /**
13  *
14  * @author Ryan
15  */

16 public class DateHolder {
17     
18     private Date JavaDoc date;
19     
20     public void setDate(Date JavaDoc date) {
21         this.date = date;
22     }
23     
24     public Date JavaDoc getDate() {
25         return date;
26     }
27 }
28
Popular Tags