]> source.dussan.org Git - poi.git/commitdiff
correctly handle LFOData structures
authorSergey Vladimirov <sergey@apache.org>
Sat, 1 Oct 2011 20:01:23 +0000 (20:01 +0000)
committerSergey Vladimirov <sergey@apache.org>
Sat, 1 Oct 2011 20:01:23 +0000 (20:01 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1178083 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/util/LittleEndian.java
src/scratchpad/src/org/apache/poi/hwpf/model/LFOData.java [new file with mode: 0644]
src/scratchpad/src/org/apache/poi/hwpf/model/LFOLVLBase.java [new file with mode: 0644]
src/scratchpad/src/org/apache/poi/hwpf/model/ListFormatOverride.java
src/scratchpad/src/org/apache/poi/hwpf/model/ListFormatOverrideLevel.java
src/scratchpad/src/org/apache/poi/hwpf/model/ListLevel.java
src/scratchpad/src/org/apache/poi/hwpf/model/ListTables.java
src/scratchpad/src/org/apache/poi/hwpf/model/types/LFOLVLBaseAbstractType.java [new file with mode: 0644]
src/types/definitions/LFOLVLBase_type.xml [new file with mode: 0644]

index ef6edf6f6626e1fd5a78b12ce7772760040b23a1..fb47009c9d460543ed776415aad48a6b767cf573 100644 (file)
@@ -19,6 +19,7 @@ package org.apache.poi.util;
 
 import java.io.IOException;
 import java.io.InputStream;
+import java.io.OutputStream;
 
 /**
  *  a utility class for handling little-endian numbers, which the 80x86 world is
@@ -97,7 +98,6 @@ public class LittleEndian implements LittleEndianConsts {
         return (b3 << 24) + (b2 << 16) + (b1 << 8) + (b0 << 0);
     }
 
-
     /**
      *  get an int value from the beginning of a byte array
      *
@@ -254,6 +254,25 @@ public class LittleEndian implements LittleEndianConsts {
         putInt(data, 0, value);
     }
 
+    /**
+     * Put int into output stream
+     * 
+     * @param value
+     *            the int (32-bit) value
+     * @param outputStream
+     *            output stream
+     * @throws IOException
+     *             if an I/O error occurs
+     */
+    public static void putInt( int value, OutputStream outputStream )
+            throws IOException
+    {
+        outputStream.write( (byte) ( ( value >>> 0 ) & 0xFF ) );
+        outputStream.write( (byte) ( ( value >>> 8 ) & 0xFF ) );
+        outputStream.write( (byte) ( ( value >>> 16 ) & 0xFF ) );
+        outputStream.write( (byte) ( ( value >>> 24 ) & 0xFF ) );
+    }
+
     /**
      * put an unsigned int value into a byte array
      *
@@ -281,6 +300,25 @@ public class LittleEndian implements LittleEndianConsts {
         putUInt(data, 0, value);
     }
 
+    /**
+     * Put unsigned int into output stream
+     * 
+     * @param value
+     *            the int (32-bit) value
+     * @param outputStream
+     *            output stream
+     * @throws IOException
+     *             if an I/O error occurs
+     */
+    public static void putUInt( long value, OutputStream outputStream )
+            throws IOException
+    {
+        outputStream.write( (byte) ( ( value >>> 0 ) & 0xFF ) );
+        outputStream.write( (byte) ( ( value >>> 8 ) & 0xFF ) );
+        outputStream.write( (byte) ( ( value >>> 16 ) & 0xFF ) );
+        outputStream.write( (byte) ( ( value >>> 24 ) & 0xFF ) );
+    }
+
     /**
      *  put a long value into a byte array
      *
diff --git a/src/scratchpad/src/org/apache/poi/hwpf/model/LFOData.java b/src/scratchpad/src/org/apache/poi/hwpf/model/LFOData.java
new file mode 100644 (file)
index 0000000..3c6cdb0
--- /dev/null
@@ -0,0 +1,67 @@
+package org.apache.poi.hwpf.model;
+
+import java.io.IOException;
+
+import org.apache.poi.hwpf.model.io.HWPFOutputStream;
+import org.apache.poi.util.Internal;
+import org.apache.poi.util.LittleEndian;
+
+/**
+ * The LFOData structure contains the Main Document CP of the corresponding LFO,
+ * as well as an array of LVL override data.
+ * 
+ * @author Sergey Vladimirov (vlsergey {at} gmail {dot} com)
+ */
+@Internal
+class LFOData
+{
+    private int _cp;
+
+    private ListFormatOverrideLevel[] _rgLfoLvl;
+
+    LFOData( byte[] buf, int startOffset, int cLfolvl )
+    {
+        int offset = startOffset;
+
+        _cp = LittleEndian.getInt( buf, offset );
+        offset += LittleEndian.INT_SIZE;
+
+        _rgLfoLvl = new ListFormatOverrideLevel[cLfolvl];
+        for ( int x = 0; x < cLfolvl; x++ )
+        {
+            _rgLfoLvl[x] = new ListFormatOverrideLevel( buf, offset );
+            offset += _rgLfoLvl[x].getSizeInBytes();
+        }
+    }
+
+    int getCp()
+    {
+        return _cp;
+    }
+
+    ListFormatOverrideLevel[] getRgLfoLvl()
+    {
+        return _rgLfoLvl;
+    }
+
+    int getSizeInBytes()
+    {
+        int result = 0;
+        result += LittleEndian.INT_SIZE;
+
+        for ( ListFormatOverrideLevel lfolvl : _rgLfoLvl )
+            result += lfolvl.getSizeInBytes();
+
+        return result;
+    }
+
+    void writeTo( HWPFOutputStream tableStream ) throws IOException
+    {
+        LittleEndian.putInt( _cp, tableStream );
+        for ( ListFormatOverrideLevel lfolvl : _rgLfoLvl )
+        {
+            tableStream.write( lfolvl.toByteArray() );
+        }
+    }
+
+}
diff --git a/src/scratchpad/src/org/apache/poi/hwpf/model/LFOLVLBase.java b/src/scratchpad/src/org/apache/poi/hwpf/model/LFOLVLBase.java
new file mode 100644 (file)
index 0000000..3a50a7c
--- /dev/null
@@ -0,0 +1,42 @@
+/* ====================================================================
+   Licensed to the Apache Software Foundation (ASF) under one or more
+   contributor license agreements.  See the NOTICE file distributed with
+   this work for additional information regarding copyright ownership.
+   The ASF licenses this file to You under the Apache License, Version 2.0
+   (the "License"); you may not use this file except in compliance with
+   the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+==================================================================== */
+package org.apache.poi.hwpf.model;
+
+import org.apache.poi.hwpf.model.types.LFOLVLBaseAbstractType;
+
+/**
+ * The LFOLVL structure contains information that is used to override the
+ * formatting information of a corresponding LVL.
+ * <p>
+ * Class and fields descriptions are quoted from Microsoft Office Word 97-2007
+ * Binary File Format and [MS-DOC] - v20110608 Word (.doc) Binary File Format
+ * 
+ * @author Sergey Vladimirov; according to Microsoft Office Word 97-2007 Binary
+ *         File Format Specification [*.doc] and [MS-DOC] - v20110608 Word
+ *         (.doc) Binary File Format
+ */
+class LFOLVLBase extends LFOLVLBaseAbstractType
+{
+    LFOLVLBase()
+    {
+    }
+
+    LFOLVLBase( byte[] buf, int offset )
+    {
+        fillFields( buf, offset );
+    }
+}
index 2e1597c30a1486ac03c2b540a7f3a7fe4be8feb4..c9ab49e14672eb3bb2e3b35d99702a80df58b3df 100644 (file)
@@ -22,27 +22,34 @@ import org.apache.poi.util.Internal;
 @Internal
 public final class ListFormatOverride
 {
-
-    private ListFormatOverrideLevel[] _levelOverrides;
-
     private LFO _lfo;
 
+    private LFOData _lfoData;
+
     public ListFormatOverride( byte[] buf, int offset )
     {
         _lfo = new LFO( buf, offset );
-        _levelOverrides = new ListFormatOverrideLevel[_lfo.getClfolvl()];
     }
 
     public ListFormatOverride( int lsid )
     {
         _lfo = new LFO();
         _lfo.setLsid( lsid );
-        _levelOverrides = new ListFormatOverrideLevel[0];
     }
 
     public ListFormatOverrideLevel[] getLevelOverrides()
     {
-        return _levelOverrides;
+        return _lfoData.getRgLfoLvl();
+    }
+
+    LFO getLfo()
+    {
+        return _lfo;
+    }
+
+    LFOData getLfoData()
+    {
+        return _lfoData;
     }
 
     public int getLsid()
@@ -52,14 +59,12 @@ public final class ListFormatOverride
 
     public ListFormatOverrideLevel getOverrideLevel( int level )
     {
-
         ListFormatOverrideLevel retLevel = null;
-
-        for ( int x = 0; x < _levelOverrides.length; x++ )
+        for ( int x = 0; x < getLevelOverrides().length; x++ )
         {
-            if ( _levelOverrides[x].getLevelNum() == level )
+            if ( getLevelOverrides()[x].getLevelNum() == level )
             {
-                retLevel = _levelOverrides[x];
+                retLevel = getLevelOverrides()[x];
             }
         }
         return retLevel;
@@ -70,6 +75,11 @@ public final class ListFormatOverride
         return _lfo.getClfolvl();
     }
 
+    void setLfoData( LFOData _lfoData )
+    {
+        this._lfoData = _lfoData;
+    }
+
     public void setLsid( int lsid )
     {
         _lfo.setLsid( lsid );
@@ -77,7 +87,7 @@ public final class ListFormatOverride
 
     public void setOverride( int index, ListFormatOverrideLevel lfolvl )
     {
-        _levelOverrides[index] = lfolvl;
+        getLevelOverrides()[index] = lfolvl;
     }
 
     public byte[] toByteArray()
index f0ae04cd9a1598033b13511fb8458fd3ecb3a93e..2cc28b336d6ffcaa06dcd22173d8828c84a29d4b 100644 (file)
    See the License for the specific language governing permissions and
    limitations under the License.
 ==================================================================== */
-
 package org.apache.poi.hwpf.model;
 
-import java.util.Arrays;
-
-import org.apache.poi.util.BitField;
-import org.apache.poi.util.BitFieldFactory;
 import org.apache.poi.util.Internal;
-import org.apache.poi.util.LittleEndian;
 
+/**
+ * The LFOLVL structure contains information that is used to override the
+ * formatting information of a corresponding LVL.
+ * <p>
+ * Class and fields descriptions are quoted from Microsoft Office Word 97-2007
+ * Binary File Format and [MS-DOC] - v20110608 Word (.doc) Binary File Format
+ */
 @Internal
 public final class ListFormatOverrideLevel
 {
-  private static final int BASE_SIZE = 8;
-
-  int _iStartAt;
-  byte _info;
-   private static BitField _ilvl = BitFieldFactory.getInstance(0xf);
-   private static BitField _fStartAt = BitFieldFactory.getInstance(0x10);
-   private static BitField _fFormatting = BitFieldFactory.getInstance(0x20);
-  byte[] _reserved = new byte[3];
-  ListLevel _lvl;
-
-  public ListFormatOverrideLevel(byte[] buf, int offset)
-  {
-    _iStartAt = LittleEndian.getInt(buf, offset);
-    offset += LittleEndian.INT_SIZE;
-    _info = buf[offset++];
-    System.arraycopy(buf, offset, _reserved, 0, _reserved.length);
-    offset += _reserved.length;
-
-    if (_fFormatting.getValue(_info) > 0)
+    private LFOLVLBase _base;
+    private ListLevel _lvl;
+
+    public ListFormatOverrideLevel( byte[] buf, int offset )
+    {
+        _base = new LFOLVLBase( buf, offset );
+
+        if ( _base.isFFormatting() )
+        {
+            _lvl = new ListLevel( buf, offset );
+        }
+    }
+
+    public boolean equals( Object obj )
     {
-      _lvl = new ListLevel(buf, offset);
+        if ( obj == null )
+        {
+            return false;
+        }
+        ListFormatOverrideLevel lfolvl = (ListFormatOverrideLevel) obj;
+        boolean lvlEquality = false;
+        if ( _lvl != null )
+        {
+            lvlEquality = _lvl.equals( lfolvl._lvl );
+        }
+        else
+        {
+            lvlEquality = lfolvl._lvl == null;
+        }
+
+        return lvlEquality && lfolvl._base.equals( _base );
     }
-  }
-
-  public ListLevel getLevel()
-  {
-    return _lvl;
-  }
-
-  public int getLevelNum()
-  {
-    return _ilvl.getValue(_info);
-  }
-
-  public boolean isFormatting()
-  {
-    return _fFormatting.getValue(_info) != 0;
-  }
-
-  public boolean isStartAt()
-  {
-    return _fStartAt.getValue(_info) != 0;
-  }
-
-  public int getSizeInBytes()
-  {
-    return (_lvl == null ? BASE_SIZE : BASE_SIZE + _lvl.getSizeInBytes());
-  }
-
-  public boolean equals(Object obj)
-  {
-    if (obj == null)
+
+    public int getIStartAt()
     {
-      return false;
+        return _base.getIStartAt();
     }
-    ListFormatOverrideLevel lfolvl = (ListFormatOverrideLevel)obj;
-    boolean lvlEquality = false;
-    if (_lvl != null)
+
+    public ListLevel getLevel()
     {
-      lvlEquality = _lvl.equals(lfolvl._lvl);
+        return _lvl;
     }
-    else
+
+    public int getLevelNum()
     {
-      lvlEquality = lfolvl._lvl == null;
+        return _base.getILvl();
     }
 
-    return lvlEquality && lfolvl._iStartAt == _iStartAt && lfolvl._info == _info &&
-      Arrays.equals(lfolvl._reserved, _reserved);
-  }
+    public int getSizeInBytes()
+    {
+        return _lvl == null ? LFOLVLBase.getSize() : LFOLVLBase.getSize()
+                + _lvl.getSizeInBytes();
+    }
 
-  public byte[] toByteArray()
-  {
-    byte[] buf = new byte[getSizeInBytes()];
+    @Override
+    public int hashCode()
+    {
+        final int prime = 31;
+        int result = 1;
+        result = prime * result + _base.hashCode();
+        result = prime * result + ( _lvl != null ? _lvl.hashCode() : 0 );
+        return result;
+    }
 
-    int offset = 0;
-    LittleEndian.putInt(buf, _iStartAt);
-    offset += LittleEndian.INT_SIZE;
-    buf[offset++] = _info;
-    System.arraycopy(_reserved, 0, buf, offset, 3);
-    offset += 3;
+    public boolean isFormatting()
+    {
+        return _base.isFFormatting();
+    }
 
-    if (_lvl != null)
+    public boolean isStartAt()
     {
-      byte[] levelBuf = _lvl.toByteArray();
-      System.arraycopy(levelBuf, 0, buf, offset, levelBuf.length);
+        return _base.isFStartAt();
     }
 
-    return buf;
-  }
+    public byte[] toByteArray()
+    {
+        int offset = 0;
+
+        byte[] buf = new byte[getSizeInBytes()];
+        _base.serialize( buf, offset );
+        offset += LFOLVLBase.getSize();
 
-  public int getIStartAt() {
-    return _iStartAt;
-  }
+        if ( _lvl != null )
+        {
+            byte[] levelBuf = _lvl.toByteArray();
+            System.arraycopy( levelBuf, 0, buf, offset, levelBuf.length );
+        }
+
+        return buf;
+    }
 }
index 790de01e6db81d63ae8e1a0c4541eed6c73bfb5b..729a948bca4507491a16ba295a1974f5cca13fdf 100644 (file)
@@ -19,9 +19,6 @@ package org.apache.poi.hwpf.model;
 
 import java.util.Arrays;
 
-import org.apache.poi.hwpf.model.types.LVLFAbstractType;
-
-import org.apache.poi.util.BitField;
 import org.apache.poi.util.Internal;
 import org.apache.poi.util.LittleEndian;
 
index a44690cfb921e85b7b4559fb7aa4592cb93e088e..5e1b8d4118d9ee34f6e75843bee50893a5212c43 100644 (file)
@@ -42,7 +42,6 @@ import org.apache.poi.util.POILogger;
 public final class ListTables
 {
   private static final int LIST_DATA_SIZE = 28;
-  private static final int LIST_FORMAT_OVERRIDE_SIZE = 16;
   private static POILogger log = POILogFactory.getLogger(ListTables.class);
 
   ListMap _listMap = new ListMap();
@@ -53,7 +52,7 @@ public final class ListTables
 
   }
 
-  public ListTables(byte[] tableStream, int lstOffset, int lfoOffset)
+  public ListTables(byte[] tableStream, int lstOffset, final int lfoOffset)
   {
     // get the list data
     int length = LittleEndian.getShort(tableStream, lstOffset);
@@ -75,28 +74,51 @@ public final class ListTables
       }
     }
 
-    // now get the list format overrides. The size is an int unlike the LST size
-    length = LittleEndian.getInt(tableStream, lfoOffset);
-    lfoOffset += LittleEndian.INT_SIZE;
-    int lfolvlOffset = lfoOffset + (LIST_FORMAT_OVERRIDE_SIZE * length);
-    for (int x = 0; x < length; x++)
-    {
-      ListFormatOverride lfo = new ListFormatOverride(tableStream, lfoOffset);
-      lfoOffset += LIST_FORMAT_OVERRIDE_SIZE;
-      int num = lfo.numOverrides();
-      for (int y = 0; y < num; y++)
-      {
-        while(tableStream[lfolvlOffset] == -1)
         {
-          lfolvlOffset++;
+            /*
+             * The PlfLfo structure contains the list format override data for
+             * the document. -- Page 424 of 621. [MS-DOC] -- v20110315 Word
+             * (.doc) Binary File Format
+             */
+            int offset = lfoOffset;
+
+            /*
+             * lfoMac (4 bytes): An unsigned integer that specifies the count of
+             * elements in both the rgLfo and rgLfoData arrays. -- Page 424 of
+             * 621. [MS-DOC] -- v20110315 Word (.doc) Binary File Format
+             */
+            long lfoMac = LittleEndian.getUInt( tableStream, offset );
+            offset += LittleEndian.INT_SIZE;
+
+            /*
+             * An array of LFO structures. The number of elements in this array
+             * is specified by lfoMac. -- Page 424 of 621. [MS-DOC] -- v20110315
+             * Word (.doc) Binary File Format
+             */
+            for ( int x = 0; x < lfoMac; x++ )
+            {
+                ListFormatOverride lfo = new ListFormatOverride( tableStream,
+                        offset );
+                offset += LFO.getSize();
+                _overrideList.add( lfo );
+            }
+
+            /*
+             * An array of LFOData that is parallel to rgLfo. The number of
+             * elements that are contained in this array is specified by lfoMac.
+             * -- Page 424 of 621. [MS-DOC] -- v20110315 Word (.doc) Binary File
+             * Format
+             */
+            for ( int x = 0; x < lfoMac; x++ )
+            {
+                ListFormatOverride lfo = _overrideList.get( x );
+                LFOData lfoData = new LFOData( tableStream, offset,
+                        lfo.numOverrides() );
+                lfo.setLfoData( lfoData );
+                offset += lfoData.getSizeInBytes();
+            }
         }
-        ListFormatOverrideLevel lfolvl = new ListFormatOverrideLevel(tableStream, lfolvlOffset);
-        lfo.setOverride(y, lfolvl);
-        lfolvlOffset += lfolvl.getSizeInBytes();
-      }
-      _overrideList.add(lfo);
     }
-  }
 
   public int addList(ListData lst, ListFormatOverride override)
   {
@@ -135,32 +157,21 @@ public final class ListTables
     tableStream.write(levelBuf.toByteArray());
   }
 
-  public void writeListOverridesTo(HWPFOutputStream tableStream)
-    throws IOException
-  {
-
-    // use this stream as a buffer for the levels since their size varies.
-    ByteArrayOutputStream levelBuf = new ByteArrayOutputStream();
-
-    int size = _overrideList.size();
+    public void writeListOverridesTo( HWPFOutputStream tableStream )
+            throws IOException
+    {
+        LittleEndian.putUInt( _overrideList.size(), tableStream );
 
-    byte[] intHolder = new byte[4];
-    LittleEndian.putInt(intHolder, size);
-    tableStream.write(intHolder);
+        for ( ListFormatOverride lfo : _overrideList )
+        {
+            tableStream.write( lfo.getLfo().serialize() );
+        }
 
-    for (int x = 0; x < size; x++)
-    {
-      ListFormatOverride lfo = _overrideList.get(x);
-      tableStream.write(lfo.toByteArray());
-      ListFormatOverrideLevel[] lfolvls = lfo.getLevelOverrides();
-      for (int y = 0; y < lfolvls.length; y++)
-      {
-        levelBuf.write(lfolvls[y].toByteArray());
-      }
+        for ( ListFormatOverride lfo : _overrideList )
+        {
+            lfo.getLfoData().writeTo( tableStream );
+        }
     }
-    tableStream.write(levelBuf.toByteArray());
-
-  }
 
   public ListFormatOverride getOverride(int lfoIndex)
   {
diff --git a/src/scratchpad/src/org/apache/poi/hwpf/model/types/LFOLVLBaseAbstractType.java b/src/scratchpad/src/org/apache/poi/hwpf/model/types/LFOLVLBaseAbstractType.java
new file mode 100644 (file)
index 0000000..9e304b9
--- /dev/null
@@ -0,0 +1,290 @@
+/* ====================================================================\r
+   Licensed to the Apache Software Foundation (ASF) under one or more\r
+   contributor license agreements.  See the NOTICE file distributed with\r
+   this work for additional information regarding copyright ownership.\r
+   The ASF licenses this file to You under the Apache License, Version 2.0\r
+   (the "License"); you may not use this file except in compliance with\r
+   the License.  You may obtain a copy of the License at\r
+\r
+       http://www.apache.org/licenses/LICENSE-2.0\r
+\r
+   Unless required by applicable law or agreed to in writing, software\r
+   distributed under the License is distributed on an "AS IS" BASIS,\r
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+   See the License for the specific language governing permissions and\r
+   limitations under the License.\r
+==================================================================== */\r
+package org.apache.poi.hwpf.model.types;\r
+\r
+import org.apache.poi.util.BitField;\r
+import org.apache.poi.util.Internal;\r
+import org.apache.poi.util.LittleEndian;\r
+\r
+/**\r
+ * The LFOLVL structure contains information that is used to override the formatting\r
+        information of a corresponding LVL. <p>Class and fields descriptions are quoted from\r
+        Microsoft Office Word 97-2007 Binary File Format and [MS-DOC] - v20110608 Word (.doc) Binary\r
+        File Format\r
+    \r
+ * <p>\r
+ * NOTE: This source is automatically generated please do not modify this file.  Either subclass or\r
+ *       remove the record in src/types/definitions.\r
+ * <p>\r
+ * This class is internal. It content or properties may change without notice \r
+ * due to changes in our knowledge of internal Microsoft Word binary structures.\r
+\r
+ * @author Sergey Vladimirov; according to Microsoft Office Word 97-2007 Binary File Format\r
+        Specification [*.doc] and [MS-DOC] - v20110608 Word (.doc) Binary File Format\r
+    \r
+ */\r
+@Internal\r
+public abstract class LFOLVLBaseAbstractType\r
+{\r
+\r
+    protected int field_1_iStartAt;\r
+    protected int field_2_flags;\r
+    /**/private static final BitField iLvl = new BitField(0x0000000F);\r
+    /**/private static final BitField fStartAt = new BitField(0x00000010);\r
+    /**/private static final BitField fFormatting = new BitField(0x00000020);\r
+    /**/private static final BitField grfhic = new BitField(0x00003FC0);\r
+    /**/private static final BitField unused1 = new BitField(0x1FFFC000);\r
+    /**/private static final BitField unused2 = new BitField(0xE0000000);\r
+\r
+    protected LFOLVLBaseAbstractType()\r
+    {\r
+    }\r
+\r
+    protected void fillFields( byte[] data, int offset )\r
+    {\r
+        field_1_iStartAt               = LittleEndian.getInt( data, 0x0 + offset );\r
+        field_2_flags                  = LittleEndian.getInt( data, 0x4 + offset );\r
+    }\r
+\r
+    public void serialize( byte[] data, int offset )\r
+    {\r
+        LittleEndian.putInt( data, 0x0 + offset, field_1_iStartAt );\r
+        LittleEndian.putInt( data, 0x4 + offset, field_2_flags );\r
+    }\r
+\r
+    public byte[] serialize()\r
+    {\r
+        final byte[] result = new byte[ getSize() ];\r
+        serialize( result, 0 );\r
+        return result;\r
+    }\r
+\r
+    /**\r
+     * Size of record\r
+     */\r
+    public static int getSize()\r
+    {\r
+        return 0 + 4 + 4;\r
+    }\r
+\r
+    @Override\r
+    public boolean equals( Object obj )\r
+    {\r
+        if ( this == obj )\r
+            return true;\r
+        if ( obj == null )\r
+            return false;\r
+        if ( getClass() != obj.getClass() )\r
+            return false;\r
+        LFOLVLBaseAbstractType other = (LFOLVLBaseAbstractType) obj;\r
+        if ( field_1_iStartAt != other.field_1_iStartAt )\r
+            return false;\r
+        if ( field_2_flags != other.field_2_flags )\r
+            return false;\r
+        return true;\r
+    }\r
+\r
+    @Override\r
+    public int hashCode()\r
+    {\r
+        final int prime = 31;\r
+        int result = 1;\r
+        result = prime * result + field_1_iStartAt;\r
+        result = prime * result + field_2_flags;\r
+        return result;\r
+    }\r
+\r
+    public String toString()\r
+    {\r
+        StringBuilder builder = new StringBuilder();\r
+        builder.append("[LFOLVLBase]\n");\r
+        builder.append("    .iStartAt             = ");\r
+        builder.append(" (").append(getIStartAt()).append(" )\n");\r
+        builder.append("    .flags                = ");\r
+        builder.append(" (").append(getFlags()).append(" )\n");\r
+        builder.append("         .iLvl                     = ").append(getILvl()).append('\n');\r
+        builder.append("         .fStartAt                 = ").append(isFStartAt()).append('\n');\r
+        builder.append("         .fFormatting              = ").append(isFFormatting()).append('\n');\r
+        builder.append("         .grfhic                   = ").append(getGrfhic()).append('\n');\r
+        builder.append("         .unused1                  = ").append(getUnused1()).append('\n');\r
+        builder.append("         .unused2                  = ").append(getUnused2()).append('\n');\r
+\r
+        builder.append("[/LFOLVLBase]\n");\r
+        return builder.toString();\r
+    }\r
+\r
+    /**\r
+     * If fStartAt is set to 0x1, this is a signed integer that specifies the start-at value that overrides lvlf.iStartAt of the corresponding LVL. This value MUST be less than or equal to 0x7FFF and MUST be greater than or equal to zero. If both fStartAt and fFormatting are set to 0x1, or if fStartAt is set to 0x0, this value is undefined and MUST be ignored.\r
+     */\r
+    @Internal\r
+    public int getIStartAt()\r
+    {\r
+        return field_1_iStartAt;\r
+    }\r
+\r
+    /**\r
+     * If fStartAt is set to 0x1, this is a signed integer that specifies the start-at value that overrides lvlf.iStartAt of the corresponding LVL. This value MUST be less than or equal to 0x7FFF and MUST be greater than or equal to zero. If both fStartAt and fFormatting are set to 0x1, or if fStartAt is set to 0x0, this value is undefined and MUST be ignored.\r
+     */\r
+    @Internal\r
+    public void setIStartAt( int field_1_iStartAt )\r
+    {\r
+        this.field_1_iStartAt = field_1_iStartAt;\r
+    }\r
+\r
+    /**\r
+     * Get the flags field for the LFOLVLBase record.\r
+     */\r
+    @Internal\r
+    public int getFlags()\r
+    {\r
+        return field_2_flags;\r
+    }\r
+\r
+    /**\r
+     * Set the flags field for the LFOLVLBase record.\r
+     */\r
+    @Internal\r
+    public void setFlags( int field_2_flags )\r
+    {\r
+        this.field_2_flags = field_2_flags;\r
+    }\r
+\r
+    /**\r
+     * Sets the iLvl field value.\r
+     * An unsigned integer that specifies the zero-based level of the list that this overrides. This LFOLVL overrides the LVL that specifies the level formatting of this level of the LSTF that is specified by the lsid field of the LFO to which this LFOLVL corresponds. This value MUST be less than or equal to 0x08\r
+     */\r
+    @Internal\r
+    public void setILvl( byte value )\r
+    {\r
+        field_2_flags = iLvl.setValue(field_2_flags, value);\r
+    }\r
+\r
+    /**\r
+     * An unsigned integer that specifies the zero-based level of the list that this overrides. This LFOLVL overrides the LVL that specifies the level formatting of this level of the LSTF that is specified by the lsid field of the LFO to which this LFOLVL corresponds. This value MUST be less than or equal to 0x08\r
+     * @return  the iLvl field value.\r
+     */\r
+    @Internal\r
+    public byte getILvl()\r
+    {\r
+        return ( byte )iLvl.getValue(field_2_flags);\r
+    }\r
+\r
+    /**\r
+     * Sets the fStartAt field value.\r
+     * A bit that specifies whether this LFOLVL overrides the start-at value of the level.\r
+     */\r
+    @Internal\r
+    public void setFStartAt( boolean value )\r
+    {\r
+        field_2_flags = fStartAt.setBoolean(field_2_flags, value);\r
+    }\r
+\r
+    /**\r
+     * A bit that specifies whether this LFOLVL overrides the start-at value of the level.\r
+     * @return  the fStartAt field value.\r
+     */\r
+    @Internal\r
+    public boolean isFStartAt()\r
+    {\r
+        return fStartAt.isSet(field_2_flags);\r
+    }\r
+\r
+    /**\r
+     * Sets the fFormatting field value.\r
+     * A bit that specifies whether lvl is an LVL that overrides the corresponding LVL\r
+     */\r
+    @Internal\r
+    public void setFFormatting( boolean value )\r
+    {\r
+        field_2_flags = fFormatting.setBoolean(field_2_flags, value);\r
+    }\r
+\r
+    /**\r
+     * A bit that specifies whether lvl is an LVL that overrides the corresponding LVL\r
+     * @return  the fFormatting field value.\r
+     */\r
+    @Internal\r
+    public boolean isFFormatting()\r
+    {\r
+        return fFormatting.isSet(field_2_flags);\r
+    }\r
+\r
+    /**\r
+     * Sets the grfhic field value.\r
+     * A grfhic that specifies the HTML incompatibilities of the overriding level formatting\r
+     */\r
+    @Internal\r
+    public void setGrfhic( short value )\r
+    {\r
+        field_2_flags = grfhic.setValue(field_2_flags, value);\r
+    }\r
+\r
+    /**\r
+     * A grfhic that specifies the HTML incompatibilities of the overriding level formatting\r
+     * @return  the grfhic field value.\r
+     */\r
+    @Internal\r
+    public short getGrfhic()\r
+    {\r
+        return ( short )grfhic.getValue(field_2_flags);\r
+    }\r
+\r
+    /**\r
+     * Sets the unused1 field value.\r
+     * This MUST be ignored\r
+     */\r
+    @Internal\r
+    public void setUnused1( short value )\r
+    {\r
+        field_2_flags = unused1.setValue(field_2_flags, value);\r
+    }\r
+\r
+    /**\r
+     * This MUST be ignored\r
+     * @return  the unused1 field value.\r
+     * @deprecated This field should not be used according to specification\r
+     */\r
+    @Internal\r
+    @Deprecated\r
+    public short getUnused1()\r
+    {\r
+        return ( short )unused1.getValue(field_2_flags);\r
+    }\r
+\r
+    /**\r
+     * Sets the unused2 field value.\r
+     * This MUST be ignored\r
+     */\r
+    @Internal\r
+    public void setUnused2( byte value )\r
+    {\r
+        field_2_flags = unused2.setValue(field_2_flags, value);\r
+    }\r
+\r
+    /**\r
+     * This MUST be ignored\r
+     * @return  the unused2 field value.\r
+     * @deprecated This field should not be used according to specification\r
+     */\r
+    @Internal\r
+    @Deprecated\r
+    public byte getUnused2()\r
+    {\r
+        return ( byte )unused2.getValue(field_2_flags);\r
+    }\r
+\r
+}  // END OF CLASS\r
diff --git a/src/types/definitions/LFOLVLBase_type.xml b/src/types/definitions/LFOLVLBase_type.xml
new file mode 100644 (file)
index 0000000..1cafd75
--- /dev/null
@@ -0,0 +1,46 @@
+<?xml version="1.0"?>
+<!--
+    ====================================================================
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements. See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License. You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+    ====================================================================
+-->
+<record fromfile="true" name="LFOLVLBase" package="org.apache.poi.hwpf.model.types">
+    <suffix>AbstractType</suffix>
+    <description>The LFOLVL structure contains information that is used to override the formatting
+        information of a corresponding LVL. &lt;p&gt;Class and fields descriptions are quoted from
+        Microsoft Office Word 97-2007 Binary File Format and [MS-DOC] - v20110608 Word (.doc) Binary
+        File Format
+    </description>
+    <author>Sergey Vladimirov; according to Microsoft Office Word 97-2007 Binary File Format
+        Specification [*.doc] and [MS-DOC] - v20110608 Word (.doc) Binary File Format
+    </author>
+    <fields>
+        <field type="int" size="4" name="iStartAt"
+            description="If fStartAt is set to 0x1, this is a signed integer that specifies the start-at value that overrides lvlf.iStartAt of the corresponding LVL. This value MUST be less than or equal to 0x7FFF and MUST be greater than or equal to zero. If both fStartAt and fFormatting are set to 0x1, or if fStartAt is set to 0x0, this value is undefined and MUST be ignored"/>
+        <field type="int" size="4" name="flags">
+            <bit mask="0x0000000F" name="iLvl"
+                description="An unsigned integer that specifies the zero-based level of the list that this overrides. This LFOLVL overrides the LVL that specifies the level formatting of this level of the LSTF that is specified by the lsid field of the LFO to which this LFOLVL corresponds. This value MUST be less than or equal to 0x08"/>
+            <bit mask="0x00000010" name="fStartAt"
+                description="A bit that specifies whether this LFOLVL overrides the start-at value of the level."/>
+            <bit mask="0x00000020" name="fFormatting"
+                description="A bit that specifies whether lvl is an LVL that overrides the corresponding LVL"/>
+            <bit mask="0x00003FC0" name="grfhic"
+                description="A grfhic that specifies the HTML incompatibilities of the overriding level formatting"/>
+            <bit mask="0x1FFFC000" name="unused1" deprecated="true" description="This MUST be ignored"/>
+            <bit mask="0xE0000000" name="unused2" deprecated="true" description="This MUST be ignored"/>
+        </field>
+    </fields>
+</record>