You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ki...@apache.org on 2014/01/11 01:14:18 UTC

svn commit: r1557290 - in /poi/trunk/src/scratchpad/src/org/apache/poi/hwpf/model: FibRgLw.java FibRgLw97.java FibRgW97.java FileInformationBlock.java

Author: kiwiwings
Date: Sat Jan 11 00:14:17 2014
New Revision: 1557290

URL: http://svn.apache.org/r1557290
Log:
javadoc fix

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

Modified: poi/trunk/src/scratchpad/src/org/apache/poi/hwpf/model/FibRgLw.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/scratchpad/src/org/apache/poi/hwpf/model/FibRgLw.java?rev=1557290&r1=1557289&r2=1557290&view=diff
==============================================================================
--- poi/trunk/src/scratchpad/src/org/apache/poi/hwpf/model/FibRgLw.java (original)
+++ poi/trunk/src/scratchpad/src/org/apache/poi/hwpf/model/FibRgLw.java Sat Jan 11 00:14:17 2014
@@ -16,7 +16,7 @@
 ==================================================================== */
 package org.apache.poi.hwpf.model;
 
-interface FibRgLw
+public interface FibRgLw
 {
     int getCbMac();
 

Modified: poi/trunk/src/scratchpad/src/org/apache/poi/hwpf/model/FibRgLw97.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/scratchpad/src/org/apache/poi/hwpf/model/FibRgLw97.java?rev=1557290&r1=1557289&r2=1557290&view=diff
==============================================================================
--- poi/trunk/src/scratchpad/src/org/apache/poi/hwpf/model/FibRgLw97.java (original)
+++ poi/trunk/src/scratchpad/src/org/apache/poi/hwpf/model/FibRgLw97.java Sat Jan 11 00:14:17 2014
@@ -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()

Modified: poi/trunk/src/scratchpad/src/org/apache/poi/hwpf/model/FibRgW97.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/scratchpad/src/org/apache/poi/hwpf/model/FibRgW97.java?rev=1557290&r1=1557289&r2=1557290&view=diff
==============================================================================
--- poi/trunk/src/scratchpad/src/org/apache/poi/hwpf/model/FibRgW97.java (original)
+++ poi/trunk/src/scratchpad/src/org/apache/poi/hwpf/model/FibRgW97.java Sat Jan 11 00:14:17 2014
@@ -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()

Modified: poi/trunk/src/scratchpad/src/org/apache/poi/hwpf/model/FileInformationBlock.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/scratchpad/src/org/apache/poi/hwpf/model/FileInformationBlock.java?rev=1557290&r1=1557289&r2=1557290&view=diff
==============================================================================
--- poi/trunk/src/scratchpad/src/org/apache/poi/hwpf/model/FileInformationBlock.java (original)
+++ poi/trunk/src/scratchpad/src/org/apache/poi/hwpf/model/FileInformationBlock.java Sat Jan 11 00:14:17 2014
@@ -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



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org