]> source.dussan.org Git - poi.git/commitdiff
javadoc fix
authorAndreas Beeker <kiwiwings@apache.org>
Sat, 11 Jan 2014 00:14:17 +0000 (00:14 +0000)
committerAndreas Beeker <kiwiwings@apache.org>
Sat, 11 Jan 2014 00:14:17 +0000 (00:14 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1557290 13f79535-47bb-0310-9956-ffa450edef68

src/scratchpad/src/org/apache/poi/hwpf/model/FibRgLw.java
src/scratchpad/src/org/apache/poi/hwpf/model/FibRgLw97.java
src/scratchpad/src/org/apache/poi/hwpf/model/FibRgW97.java
src/scratchpad/src/org/apache/poi/hwpf/model/FileInformationBlock.java

index 53dd68f39f9c74a4eff376f59ad0c4953f2d1589..d6bb805dd58266c4d597a1716ee36ccb2b08a7b9 100644 (file)
@@ -16,7 +16,7 @@
 ==================================================================== */
 package org.apache.poi.hwpf.model;
 
-interface FibRgLw
+public interface FibRgLw
 {
     int getCbMac();
 
index 26cf4b637a295c2da796061d2757808134f23fa5..933afd0ca02bf1842e2b1807d718955f780c3f08 100644 (file)
@@ -31,7 +31,7 @@ import org.apache.poi.util.Internal;
  *         (.doc) Binary File Format
  */
 @Internal
-class FibRgLw97 extends FibRgLw97AbstractType implements FibRgLw
+public class FibRgLw97 extends FibRgLw97AbstractType implements FibRgLw
 {
 
     public FibRgLw97()
index ec15c8e65a0609d49daaff1b76ff07ab8011b283..fcf3527deadee8b3d38f365c267c0cbb5f7b2691 100644 (file)
@@ -30,7 +30,7 @@ import org.apache.poi.util.Internal;
  *         (.doc) Binary File Format
  */
 @Internal
-class FibRgW97 extends FibRgW97AbstractType
+public class FibRgW97 extends FibRgW97AbstractType
 {
 
     public FibRgW97()
index 34d272b4ecfce8b8e80be9edb93ed81d0f2c2310..713a7d90159292d62f02dc0cfd1e38d751fe1ed6 100644 (file)
@@ -30,20 +30,15 @@ import org.apache.poi.util.POILogFactory;
 import org.apache.poi.util.POILogger;
 
 /**
- * The File Information Block (FIB). Holds pointers
+ * <p>The File Information Block (FIB). Holds pointers
  *  to various bits of the file, and lots of flags which
- *  specify properties of the document.
- *
- * The {@link FibBase} class, holds the
- *  first 32 bytes.
- * The next part, the fibRgW / FibRgW97, is handled
- *  by {@link FibRgW97}.
- * The next part, the fibRgLw / The FibRgLw97, is
- *  handled by the {@link FibRgLw}.
- * Finally, the rest of the fields are handled by
- *  the {@link FIBFieldHandler}.
- *
- * @author  andy
+ *  specify properties of the document.<p>
+ * <ul>
+ * <li>The {@link FibBase} class, holds the first 32 bytes.</li>
+ * <li>The next part, the fibRgW / FibRgW97, is handled by the {@link FibRgW97}.</li>
+ * <li>The next part, the fibRgLw / FibRgLw97, is handled by the {@link FibRgLw97}.</li>
+ * <li>Finally, the rest of the fields are handled by the {@link FIBFieldHandler}.</li>
+ * </ul>
  */
 @Internal
 public final class FileInformationBlock implements Cloneable