mirror of https://github.com/apache/poi.git
javadoc fix
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1557290 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
77436875d1
commit
dad4a3299f
|
@ -16,7 +16,7 @@
|
|||
==================================================================== */
|
||||
package org.apache.poi.hwpf.model;
|
||||
|
||||
interface FibRgLw
|
||||
public interface FibRgLw
|
||||
{
|
||||
int getCbMac();
|
||||
|
||||
|
|
|
@ -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()
|
||||
|
|
|
@ -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()
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue