]> source.dussan.org Git - poi.git/commitdiff
Fix warnings, typos etc
authorNick Burch <nick@apache.org>
Thu, 23 Dec 2010 09:18:04 +0000 (09:18 +0000)
committerNick Burch <nick@apache.org>
Thu, 23 Dec 2010 09:18:04 +0000 (09:18 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1052201 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/poifs/property/PropertyTable.java
src/java/org/apache/poi/poifs/storage/PropertyBlock.java

index 996d54f2fa883e9445c95d15ede457b2a0971bb5..45a97341581fc1918b60d17e4edc0b1d8e9aa788 100644 (file)
@@ -21,14 +21,15 @@ import java.io.IOException;
 import java.io.OutputStream;
 
 import org.apache.poi.poifs.common.POIFSBigBlockSize;
+import org.apache.poi.poifs.filesystem.POIFSFileSystem;
 import org.apache.poi.poifs.storage.BlockWritable;
 import org.apache.poi.poifs.storage.HeaderBlock;
 import org.apache.poi.poifs.storage.PropertyBlock;
 import org.apache.poi.poifs.storage.RawDataBlockList;
 
 /**
- * This class embodies the Property Table for the filesystem; this is
- * basically the directory for all of the documents in the
+ * This class embodies the Property Table for the {@link POIFSFileSystem}; 
+ *  this is basically the directory for all of the documents in the
  * filesystem.
  *
  * @author Marc Johnson (mjohnson at apache dot org)
@@ -49,7 +50,7 @@ public final class PropertyTable extends PropertyTableBase implements BlockWrita
      * to extract the property table from it). Populates the
      * properties thoroughly
      *
-     * @param startBlock the first block of the property table
+     * @param headerBlock the header block of the file
      * @param blockList the list of blocks
      *
      * @exception IOException if anything goes wrong (which should be
index 06cb71c1149d83b6cc3005dc5840a6002b5beb97..c824166bf5ec99595e9d733edd1d8d3b778ca1c3 100644 (file)
@@ -22,7 +22,6 @@ import java.io.OutputStream;
 import java.util.List;
 
 import org.apache.poi.poifs.common.POIFSBigBlockSize;
-import org.apache.poi.poifs.common.POIFSConstants;
 import org.apache.poi.poifs.property.Property;
 
 /**
@@ -63,7 +62,7 @@ public final class PropertyBlock extends BigBlock {
      */
 
     public static BlockWritable [] createPropertyBlockArray(
-            final POIFSBigBlockSize bigBlockSize, final List properties)
+            final POIFSBigBlockSize bigBlockSize, final List<Property> properties)
     {
         int _properties_per_block = bigBlockSize.getPropertiesPerBlock();
         int        block_count   =