klute 02/05/02 01:11:10
Modified: src/java/org/apache/poi/hpsf DocumentSummaryInformation.java
Log:
Correct return type for getLinksDirty() - but it is still unimplemented.
Revision Changes Path
1.4 +6 -6
jakarta-poi/src/java/org/apache/poi/hpsf/DocumentSummaryInformation.java
Index: DocumentSummaryInformation.java
===================================================================
RCS file:
/home/cvs/jakarta-poi/src/java/org/apache/poi/hpsf/DocumentSummaryInformation.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- DocumentSummaryInformation.java 1 May 2002 09:31:52 -0000 1.3
+++ DocumentSummaryInformation.java 2 May 2002 08:11:10 -0000 1.4
@@ -65,7 +65,7 @@
* @see SummaryInformation
*
* @author Rainer Klute ([EMAIL PROTECTED])
- * @version $Id: DocumentSummaryInformation.java,v 1.3 2002/05/01 09:31:52 klute
Exp $
+ * @version $Id: DocumentSummaryInformation.java,v 1.4 2002/05/02 08:11:10 klute
Exp $
* @since 2002-02-09
*/
public class DocumentSummaryInformation extends SpecialPropertySet
@@ -253,15 +253,15 @@
/**
- * <p>Returns the stream's links dirty (or <code>null</code>)
- * <strong>when this method is implemented. Please note that the
- * return type is likely to change!</strong>
+ * <p>Returns the stream's links dirty information <strong>when
+ * this method is implemented.</strong>
*/
- public byte[] getLinksDirty()
+ public boolean getLinksDirty()
{
if (true)
throw new UnsupportedOperationException("FIXME");
- return (byte[]) getProperty(PropertyIDMap.PID_LINKSDIRTY);
+ // return (byte[]) getProperty(PropertyIDMap.PID_LINKSDIRTY);
+ return false;
}
}