diff options
author | Rainer Klute <klute@apache.org> | 2002-07-22 08:25:19 +0000 |
---|---|---|
committer | Rainer Klute <klute@apache.org> | 2002-07-22 08:25:19 +0000 |
commit | ace2d2b80c3f4e4a068cf2b604d70efa3ceecec1 (patch) | |
tree | 08d66f071d8555f6660ec9c9d09ec3f14f236b1f /src/java/org | |
parent | 4478e6fea3f6f9698790539e29c90e4a3a216748 (diff) | |
download | poi-ace2d2b80c3f4e4a068cf2b604d70efa3ceecec1.tar.gz poi-ace2d2b80c3f4e4a068cf2b604d70efa3ceecec1.zip |
First HPSF test cases added.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352805 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org')
-rw-r--r-- | src/java/org/apache/poi/hpsf/Property.java | 11 | ||||
-rw-r--r-- | src/java/org/apache/poi/poifs/property/PropertyConstants.java | 4 |
2 files changed, 6 insertions, 9 deletions
diff --git a/src/java/org/apache/poi/hpsf/Property.java b/src/java/org/apache/poi/hpsf/Property.java index 073ac791df..13c6917c6e 100644 --- a/src/java/org/apache/poi/hpsf/Property.java +++ b/src/java/org/apache/poi/hpsf/Property.java @@ -75,15 +75,16 @@ import org.apache.poi.util.LittleEndian; * <p>The property's <strong>type</strong> determines how its * <strong>value </strong> is interpreted. For example, if the type is * {@link Variant#VT_LPSTR} (byte string), the value consists of a - * {@link DWord} telling how many bytes the string contains. The bytes - * follow immediately, including any null bytes that terminate the + * DWord telling how many bytes the string contains. The bytes follow + * immediately, including any null bytes that terminate the * string. The type {@link Variant#VT_I4} denotes a four-byte integer * value, {@link Variant#VT_FILETIME} some date and time (of a * file).</p> * - * <p><strong>FIXME:</strong> Reading of other types than those - * mentioned above and the dictionary property is not yet - * implemented.</p> + * <p><strong>FIXME:</strong> Reading of other types than {@link + * Variant#VT_I4}, {@link Variant#VT_FILETIME}, {@link + * Variant#VT_LPSTR}, {@link Variant#VT_CF}, {@link Variant#VT_BOOL}, + * and reading the dictionary property is not yet implemented.</p> * * @author Rainer Klute (klute@rainer-klute.de) * @author Drew Varner (Drew.Varner InAndAround sc.edu) diff --git a/src/java/org/apache/poi/poifs/property/PropertyConstants.java b/src/java/org/apache/poi/poifs/property/PropertyConstants.java index 59b0dac4aa..ea2d06a62b 100644 --- a/src/java/org/apache/poi/poifs/property/PropertyConstants.java +++ b/src/java/org/apache/poi/poifs/property/PropertyConstants.java @@ -57,10 +57,6 @@ package org.apache.poi.poifs.property; /** * Interface PropertyConstants - * - * - * @author - * @version %I%, %G% */ public interface PropertyConstants |