javadoc fix

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1557290 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Andreas Beeker 2014-01-11 00:14:17 +00:00
parent 1eba8faedb
commit c148f9c3e5
4 changed files with 11 additions and 16 deletions

View File

@ -16,7 +16,7 @@
==================================================================== */ ==================================================================== */
package org.apache.poi.hwpf.model; package org.apache.poi.hwpf.model;
interface FibRgLw public interface FibRgLw
{ {
int getCbMac(); int getCbMac();

View File

@ -31,7 +31,7 @@ import org.apache.poi.util.Internal;
* (.doc) Binary File Format * (.doc) Binary File Format
*/ */
@Internal @Internal
class FibRgLw97 extends FibRgLw97AbstractType implements FibRgLw public class FibRgLw97 extends FibRgLw97AbstractType implements FibRgLw
{ {
public FibRgLw97() public FibRgLw97()

View File

@ -30,7 +30,7 @@ import org.apache.poi.util.Internal;
* (.doc) Binary File Format * (.doc) Binary File Format
*/ */
@Internal @Internal
class FibRgW97 extends FibRgW97AbstractType public class FibRgW97 extends FibRgW97AbstractType
{ {
public FibRgW97() public FibRgW97()

View File

@ -30,20 +30,15 @@ import org.apache.poi.util.POILogFactory;
import org.apache.poi.util.POILogger; 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 * to various bits of the file, and lots of flags which
* specify properties of the document. * specify properties of the document.<p>
* * <ul>
* The {@link FibBase} class, holds the * <li>The {@link FibBase} class, holds the first 32 bytes.</li>
* first 32 bytes. * <li>The next part, the fibRgW / FibRgW97, is handled by the {@link FibRgW97}.</li>
* The next part, the fibRgW / FibRgW97, is handled * <li>The next part, the fibRgLw / FibRgLw97, is handled by the {@link FibRgLw97}.</li>
* by {@link FibRgW97}. * <li>Finally, the rest of the fields are handled by the {@link FIBFieldHandler}.</li>
* The next part, the fibRgLw / The FibRgLw97, is * </ul>
* handled by the {@link FibRgLw}.
* Finally, the rest of the fields are handled by
* the {@link FIBFieldHandler}.
*
* @author andy
*/ */
@Internal @Internal
public final class FileInformationBlock implements Cloneable public final class FileInformationBlock implements Cloneable