1 //$Id: Document.java,v 1.1 2004/08/22 01:20:07 oneovthafew Exp $2 package org.hibernate.test.interfaceproxy;3 4 import java.sql.Blob ;5 import java.util.Calendar ;6 7 /**8 * @author Gavin King9 */10 public interface Document extends Item {11 /**12 * @return Returns the content.13 */14 public Blob getContent();15 16 /**17 * @param content The content to set.18 */19 public void setContent(Blob content);20 21 public Calendar getCreated();22 23 public Calendar getModified();24 }