1 4 package com.openedit.modules.changelog; 5 6 import java.io.InputStream ; 7 import java.util.Date ; 8 9 import org.openedit.repository.ContentItem; 10 import org.openedit.repository.RepositoryException; 11 12 13 17 public class RevisionItem extends ContentItem 18 { 19 20 23 public InputStream getInputStream() throws RepositoryException 24 { 25 return null; 26 } 27 28 31 public boolean exists() 32 { 33 return false; 34 } 35 36 39 public boolean isFolder() 40 { 41 return false; 42 } 43 44 47 public boolean isWritable() 48 { 49 return false; 50 } 51 public void setDate(Date inDate) 52 { 53 fieldLastModified = inDate; 54 } 55 } 56 | Popular Tags |