KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > openedit > modules > changelog > RevisionItem


1 /*
2  * Created on Jan 5, 2005
3  */

4 package com.openedit.modules.changelog;
5
6 import java.io.InputStream JavaDoc;
7 import java.util.Date JavaDoc;
8
9 import org.openedit.repository.ContentItem;
10 import org.openedit.repository.RepositoryException;
11
12
13 /**
14  * @author cburkey
15  *
16  */

17 public class RevisionItem extends ContentItem
18 {
19
20     /* (non-javadoc)
21      * @see com.einnovation.repository.ContentItem#getInputStream()
22      */

23     public InputStream JavaDoc getInputStream() throws RepositoryException
24     {
25         return null;
26     }
27
28     /* (non-javadoc)
29      * @see com.einnovation.repository.ContentItem#exists()
30      */

31     public boolean exists()
32     {
33         return false;
34     }
35
36     /* (non-javadoc)
37      * @see com.einnovation.repository.ContentItem#isFolder()
38      */

39     public boolean isFolder()
40     {
41         return false;
42     }
43
44     /* (non-javadoc)
45      * @see com.einnovation.repository.ContentItem#isWritable()
46      */

47     public boolean isWritable()
48     {
49         return false;
50     }
51     public void setDate(Date JavaDoc inDate)
52     {
53         fieldLastModified = inDate;
54     }
55 }
56
Popular Tags