KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > test > interfaceproxy > DocumentImpl


1 //$Id: DocumentImpl.java,v 1.1 2004/08/22 01:20:07 oneovthafew Exp $
2
package org.hibernate.test.interfaceproxy;
3
4 import java.sql.Blob JavaDoc;
5 import java.util.Calendar JavaDoc;
6
7 /**
8  * @author Gavin King
9  */

10 public class DocumentImpl extends ItemImpl implements Document {
11     private Blob JavaDoc content;
12     private Calendar JavaDoc modified;
13     private Calendar JavaDoc created;
14     /**
15      * @return Returns the created.
16      */

17     public Calendar JavaDoc getCreated() {
18         return created;
19     }
20     /**
21      * @param created The created to set.
22      */

23     public void setCreated(Calendar JavaDoc created) {
24         this.created = created;
25     }
26     /**
27      * @return Returns the modified.
28      */

29     public Calendar JavaDoc getModified() {
30         return modified;
31     }
32     /**
33      * @param modified The modified to set.
34      */

35     public void setModified(Calendar JavaDoc modified) {
36         this.modified = modified;
37     }
38     /**
39      * @return Returns the content.
40      */

41     public Blob JavaDoc getContent() {
42         return content;
43     }
44     /**
45      * @param content The content to set.
46      */

47     public void setContent(Blob JavaDoc content) {
48         this.content = content;
49     }
50 }
51
Popular Tags