]> source.dussan.org Git - poi.git/commitdiff
Area format record
authorGlen Stampoultzis <glens@apache.org>
Mon, 25 Mar 2002 10:08:16 +0000 (10:08 +0000)
committerGlen Stampoultzis <glens@apache.org>
Mon, 25 Mar 2002 10:08:16 +0000 (10:08 +0000)
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352280 13f79535-47bb-0310-9956-ffa450edef68

21 files changed:
src/java/org/apache/poi/hssf/record/AreaFormatRecord.java [new file with mode: 0644]
src/java/org/apache/poi/hssf/record/AreaRecord.java
src/java/org/apache/poi/hssf/record/AxisRecord.java
src/java/org/apache/poi/hssf/record/BarRecord.java
src/java/org/apache/poi/hssf/record/CategorySeriesAxisRecord.java
src/java/org/apache/poi/hssf/record/ChartRecord.java
src/java/org/apache/poi/hssf/record/DatRecord.java
src/java/org/apache/poi/hssf/record/DataFormatRecord.java
src/java/org/apache/poi/hssf/record/DefaultDataLabelTextPropertiesRecord.java
src/java/org/apache/poi/hssf/record/FontBasisRecord.java
src/java/org/apache/poi/hssf/record/FontIndexRecord.java
src/java/org/apache/poi/hssf/record/FrameRecord.java
src/java/org/apache/poi/hssf/record/LegendRecord.java
src/java/org/apache/poi/hssf/record/NumberFormatIndexRecord.java
src/java/org/apache/poi/hssf/record/PlotGrowthRecord.java
src/java/org/apache/poi/hssf/record/SeriesListRecord.java
src/java/org/apache/poi/hssf/record/SeriesRecord.java
src/java/org/apache/poi/hssf/record/UnitsRecord.java
src/java/org/apache/poi/hssf/record/ValueRangeRecord.java
src/records/definitions/area_format_record.xml [new file with mode: 0644]
src/testcases/org/apache/poi/hssf/record/TestAreaFormatRecord.java [new file with mode: 0644]

diff --git a/src/java/org/apache/poi/hssf/record/AreaFormatRecord.java b/src/java/org/apache/poi/hssf/record/AreaFormatRecord.java
new file mode 100644 (file)
index 0000000..220e2ac
--- /dev/null
@@ -0,0 +1,353 @@
+
+/* ====================================================================
+ * The Apache Software License, Version 1.1
+ *
+ * Copyright (c) 2002 The Apache Software Foundation.  All rights
+ * reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in
+ *    the documentation and/or other materials provided with the
+ *    distribution.
+ *
+ * 3. The end-user documentation included with the redistribution,
+ *    if any, must include the following acknowledgment:
+ *       "This product includes software developed by the
+ *        Apache Software Foundation (http://www.apache.org/)."
+ *    Alternately, this acknowledgment may appear in the software itself,
+ *    if and wherever such third-party acknowledgments normally appear.
+ *
+ * 4. The names "Apache" and "Apache Software Foundation" and
+ *    "Apache POI" must not be used to endorse or promote products
+ *    derived from this software without prior written permission. For
+ *    written permission, please contact apache@apache.org.
+ *
+ * 5. Products derived from this software may not be called "Apache",
+ *    "Apache POI", nor may "Apache" appear in their name, without
+ *    prior written permission of the Apache Software Foundation.
+ *
+ * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
+ * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
+ * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+ * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
+ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ * ====================================================================
+ *
+ * This software consists of voluntary contributions made by many
+ * individuals on behalf of the Apache Software Foundation.  For more
+ * information on the Apache Software Foundation, please see
+ * <http://www.apache.org/>.
+ */
+
+
+package org.apache.poi.hssf.record;
+
+
+
+import org.apache.poi.util.BitField;
+import org.apache.poi.util.LittleEndian;
+import org.apache.poi.util.StringUtil;
+import org.apache.poi.util.HexDump;
+
+/**
+ * The area format record is used to define the colours and patterns for an area.
+ * NOTE: This source is automatically generated please do not modify this file.  Either subclass or
+ *       remove the record in src/records/definitions.
+
+ * @author Glen Stampoultzis (glens at apache.org)
+ */
+public class AreaFormatRecord
+    extends Record
+{
+    public final static short      sid                             = 0x100a;
+    private  int        field_1_foregroundColor;
+    private  int        field_2_backgroundColor;
+    private  short      field_3_pattern;
+    private  short      field_4_formatFlags;
+    private BitField   automatic                                  = new BitField(0x1);
+    private BitField   invert                                     = new BitField(0x2);
+    private  short      field_5_forecolorIndex;
+    private  short      field_6_backcolorIndex;
+
+
+    public AreaFormatRecord()
+    {
+
+    }
+
+    /**
+     * Constructs a AreaFormat record and sets its fields appropriately.
+     *
+     * @param id    id must be 0x100a or an exception
+     *              will be throw upon validation
+     * @param size  size the size of the data area of the record
+     * @param data  data of the record (should not contain sid/len)
+     */
+
+    public AreaFormatRecord(short id, short size, byte [] data)
+    {
+        super(id, size, data);
+    }
+
+    /**
+     * Constructs a AreaFormat record and sets its fields appropriately.
+     *
+     * @param id    id must be 0x100a or an exception
+     *              will be throw upon validation
+     * @param size  size the size of the data area of the record
+     * @param data  data of the record (should not contain sid/len)
+     * @param offset of the record's data
+     */
+
+    public AreaFormatRecord(short id, short size, byte [] data, int offset)
+    {
+        super(id, size, data, offset);
+    }
+
+    /**
+     * Checks the sid matches the expected side for this record
+     *
+     * @param id   the expected sid.
+     */
+    protected void validateSid(short id)
+    {
+        if (id != sid)
+        {
+            throw new RecordFormatException("Not a AreaFormat record");
+        }
+    }
+
+    protected void fillFields(byte [] data, short size, int offset)
+    {
+        field_1_foregroundColor         = LittleEndian.getInt(data, 0x0 + offset);
+        field_2_backgroundColor         = LittleEndian.getInt(data, 0x4 + offset);
+        field_3_pattern                 = LittleEndian.getShort(data, 0x8 + offset);
+        field_4_formatFlags             = LittleEndian.getShort(data, 0xa + offset);
+        field_5_forecolorIndex          = LittleEndian.getShort(data, 0xc + offset);
+        field_6_backcolorIndex          = LittleEndian.getShort(data, 0xe + offset);
+
+    }
+
+    public String toString()
+    {
+        StringBuffer buffer = new StringBuffer();
+
+        buffer.append("[AreaFormat]\n");
+
+        buffer.append("    .foregroundColor      = ")
+            .append("0x")
+            .append(HexDump.toHex((int)getForegroundColor()))
+            .append(" (").append(getForegroundColor()).append(" )\n");
+
+        buffer.append("    .backgroundColor      = ")
+            .append("0x")
+            .append(HexDump.toHex((int)getBackgroundColor()))
+            .append(" (").append(getBackgroundColor()).append(" )\n");
+
+        buffer.append("    .pattern              = ")
+            .append("0x")
+            .append(HexDump.toHex((short)getPattern()))
+            .append(" (").append(getPattern()).append(" )\n");
+
+        buffer.append("    .formatFlags          = ")
+            .append("0x")
+            .append(HexDump.toHex((short)getFormatFlags()))
+            .append(" (").append(getFormatFlags()).append(" )\n");
+        buffer.append("         .automatic                = ").append(isAutomatic           ()).append('\n');
+        buffer.append("         .invert                   = ").append(isInvert              ()).append('\n');
+
+        buffer.append("    .forecolorIndex       = ")
+            .append("0x")
+            .append(HexDump.toHex((short)getForecolorIndex()))
+            .append(" (").append(getForecolorIndex()).append(" )\n");
+
+        buffer.append("    .backcolorIndex       = ")
+            .append("0x")
+            .append(HexDump.toHex((short)getBackcolorIndex()))
+            .append(" (").append(getBackcolorIndex()).append(" )\n");
+
+        buffer.append("[/AreaFormat]\n");
+        return buffer.toString();
+    }
+
+    public int serialize(int offset, byte[] data)
+    {
+        LittleEndian.putShort(data, 0 + offset, sid);
+        LittleEndian.putShort(data, 2 + offset, (short)(getRecordSize() - 4));
+
+        LittleEndian.putInt(data, 4 + offset, field_1_foregroundColor);
+        LittleEndian.putInt(data, 8 + offset, field_2_backgroundColor);
+        LittleEndian.putShort(data, 12 + offset, field_3_pattern);
+        LittleEndian.putShort(data, 14 + offset, field_4_formatFlags);
+        LittleEndian.putShort(data, 16 + offset, field_5_forecolorIndex);
+        LittleEndian.putShort(data, 18 + offset, field_6_backcolorIndex);
+
+        return getRecordSize();
+    }
+
+    /**
+     * Size of record (exluding 4 byte header)
+     */
+    public int getRecordSize()
+    {
+        return 4 + 4 + 4 + 2 + 2 + 2 + 2;
+    }
+
+    public short getSid()
+    {
+        return this.sid;
+    }
+
+
+    /**
+     * Get the foreground color field for the AreaFormat record.
+     */
+    public int getForegroundColor()
+    {
+        return field_1_foregroundColor;
+    }
+
+    /**
+     * Set the foreground color field for the AreaFormat record.
+     */
+    public void setForegroundColor(int field_1_foregroundColor)
+    {
+        this.field_1_foregroundColor = field_1_foregroundColor;
+    }
+
+    /**
+     * Get the background color field for the AreaFormat record.
+     */
+    public int getBackgroundColor()
+    {
+        return field_2_backgroundColor;
+    }
+
+    /**
+     * Set the background color field for the AreaFormat record.
+     */
+    public void setBackgroundColor(int field_2_backgroundColor)
+    {
+        this.field_2_backgroundColor = field_2_backgroundColor;
+    }
+
+    /**
+     * Get the pattern field for the AreaFormat record.
+     */
+    public short getPattern()
+    {
+        return field_3_pattern;
+    }
+
+    /**
+     * Set the pattern field for the AreaFormat record.
+     */
+    public void setPattern(short field_3_pattern)
+    {
+        this.field_3_pattern = field_3_pattern;
+    }
+
+    /**
+     * Get the format flags field for the AreaFormat record.
+     */
+    public short getFormatFlags()
+    {
+        return field_4_formatFlags;
+    }
+
+    /**
+     * Set the format flags field for the AreaFormat record.
+     */
+    public void setFormatFlags(short field_4_formatFlags)
+    {
+        this.field_4_formatFlags = field_4_formatFlags;
+    }
+
+    /**
+     * Get the forecolor index field for the AreaFormat record.
+     */
+    public short getForecolorIndex()
+    {
+        return field_5_forecolorIndex;
+    }
+
+    /**
+     * Set the forecolor index field for the AreaFormat record.
+     */
+    public void setForecolorIndex(short field_5_forecolorIndex)
+    {
+        this.field_5_forecolorIndex = field_5_forecolorIndex;
+    }
+
+    /**
+     * Get the backcolor index field for the AreaFormat record.
+     */
+    public short getBackcolorIndex()
+    {
+        return field_6_backcolorIndex;
+    }
+
+    /**
+     * Set the backcolor index field for the AreaFormat record.
+     */
+    public void setBackcolorIndex(short field_6_backcolorIndex)
+    {
+        this.field_6_backcolorIndex = field_6_backcolorIndex;
+    }
+
+    /**
+     * Sets the automatic field value.
+     * automatic formatting
+     */
+    public void setAutomatic(boolean value)
+    {
+        field_4_formatFlags = automatic.setShortBoolean(field_4_formatFlags, value);
+    }
+
+    /**
+     * automatic formatting
+     * @return  the automatic field value.
+     */
+    public boolean isAutomatic()
+    {
+        return automatic.isSet(field_4_formatFlags);
+    }
+
+    /**
+     * Sets the invert field value.
+     * swap foreground and background colours when data is negative
+     */
+    public void setInvert(boolean value)
+    {
+        field_4_formatFlags = invert.setShortBoolean(field_4_formatFlags, value);
+    }
+
+    /**
+     * swap foreground and background colours when data is negative
+     * @return  the invert field value.
+     */
+    public boolean isInvert()
+    {
+        return invert.isSet(field_4_formatFlags);
+    }
+
+
+}  // END OF CLASS
+
+
+
+
index 6e4f89f76c2a99fe3c7cc2cf5fca411b1e238955..6df0c708e84929e850908cfd7bbe3f4ece93b557 100644 (file)
@@ -129,7 +129,7 @@ public class AreaRecord
 
     protected void fillFields(byte [] data, short size, int offset)
     {
-        field_1_formatFlags             = LittleEndian.getShort(data, 0 + offset);
+        field_1_formatFlags             = LittleEndian.getShort(data, 0x0 + offset);
 
     }
 
index f8b48c9dd593ece4b79b3aee279aa33c1fc2db8e..b73f70a980ce97703b62d3ceafa684e5fd76627e 100644 (file)
@@ -133,11 +133,11 @@ public class AxisRecord
 
     protected void fillFields(byte [] data, short size, int offset)
     {
-        field_1_axisType                = LittleEndian.getShort(data, 0 + offset);
-        field_2_reserved1               = LittleEndian.getInt(data, 2 + offset);
-        field_3_reserved2               = LittleEndian.getInt(data, 6 + offset);
-        field_4_reserved3               = LittleEndian.getInt(data, 10 + offset);
-        field_5_reserved4               = LittleEndian.getInt(data, 14 + offset);
+        field_1_axisType                = LittleEndian.getShort(data, 0x0 + offset);
+        field_2_reserved1               = LittleEndian.getInt(data, 0x2 + offset);
+        field_3_reserved2               = LittleEndian.getInt(data, 0x6 + offset);
+        field_4_reserved3               = LittleEndian.getInt(data, 0xa + offset);
+        field_5_reserved4               = LittleEndian.getInt(data, 0xe + offset);
 
     }
 
index 309ed9c1589ce263679fddf248a9812361bfe240..9c410934de76ec56d63baaf1fda6db6e9696293a 100644 (file)
@@ -133,9 +133,9 @@ public class BarRecord
 
     protected void fillFields(byte [] data, short size, int offset)
     {
-        field_1_barSpace                = LittleEndian.getShort(data, 0 + offset);
-        field_2_categorySpace           = LittleEndian.getShort(data, 2 + offset);
-        field_3_formatFlags             = LittleEndian.getShort(data, 4 + offset);
+        field_1_barSpace                = LittleEndian.getShort(data, 0x0 + offset);
+        field_2_categorySpace           = LittleEndian.getShort(data, 0x2 + offset);
+        field_3_formatFlags             = LittleEndian.getShort(data, 0x4 + offset);
 
     }
 
index 27894a4b6fcab38c5fdafeb253c33af78bc0150c..c20aa4644aa50d7e59d2868c3d1366ef488a5f68 100644 (file)
@@ -132,10 +132,10 @@ public class CategorySeriesAxisRecord
 
     protected void fillFields(byte [] data, short size, int offset)
     {
-        field_1_crossingPoint           = LittleEndian.getShort(data, 0 + offset);
-        field_2_labelFrequency          = LittleEndian.getShort(data, 2 + offset);
-        field_3_tickMarkFrequency       = LittleEndian.getShort(data, 4 + offset);
-        field_4_options                 = LittleEndian.getShort(data, 6 + offset);
+        field_1_crossingPoint           = LittleEndian.getShort(data, 0x0 + offset);
+        field_2_labelFrequency          = LittleEndian.getShort(data, 0x2 + offset);
+        field_3_tickMarkFrequency       = LittleEndian.getShort(data, 0x4 + offset);
+        field_4_options                 = LittleEndian.getShort(data, 0x6 + offset);
 
     }
 
index 55f92db34b1bbe2e0415c752525fa4addbaae34c..4df39a015cac9c9bf3c5061f10e2cd68d04cac52 100644 (file)
@@ -129,10 +129,10 @@ public class ChartRecord
 
     protected void fillFields(byte [] data, short size, int offset)
     {
-        field_1_x                       = LittleEndian.getInt(data, 0 + offset);
-        field_2_y                       = LittleEndian.getInt(data, 4 + offset);
-        field_3_width                   = LittleEndian.getInt(data, 8 + offset);
-        field_4_height                  = LittleEndian.getInt(data, 12 + offset);
+        field_1_x                       = LittleEndian.getInt(data, 0x0 + offset);
+        field_2_y                       = LittleEndian.getInt(data, 0x4 + offset);
+        field_3_width                   = LittleEndian.getInt(data, 0x8 + offset);
+        field_4_height                  = LittleEndian.getInt(data, 0xc + offset);
 
     }
 
index fd62a3ef102514cae6418082d70a92729914646a..5290e3d32fa830038853f3bc14243ffa789fa719 100644 (file)
@@ -130,7 +130,7 @@ public class DatRecord
 
     protected void fillFields(byte [] data, short size, int offset)
     {
-        field_1_options                 = LittleEndian.getShort(data, 0 + offset);
+        field_1_options                 = LittleEndian.getShort(data, 0x0 + offset);
 
     }
 
index 2f143bce679ed5c8fd5478740b7001799c4b835f..4f9bc0f1d89901f58e6769d5759e3c73955a9398 100644 (file)
@@ -130,10 +130,10 @@ public class DataFormatRecord
 
     protected void fillFields(byte [] data, short size, int offset)
     {
-        field_1_pointNumber             = LittleEndian.getShort(data, 0 + offset);
-        field_2_seriesIndex             = LittleEndian.getShort(data, 2 + offset);
-        field_3_seriesNumber            = LittleEndian.getShort(data, 4 + offset);
-        field_4_formatFlags             = LittleEndian.getShort(data, 6 + offset);
+        field_1_pointNumber             = LittleEndian.getShort(data, 0x0 + offset);
+        field_2_seriesIndex             = LittleEndian.getShort(data, 0x2 + offset);
+        field_3_seriesNumber            = LittleEndian.getShort(data, 0x4 + offset);
+        field_4_formatFlags             = LittleEndian.getShort(data, 0x6 + offset);
 
     }
 
index 5431989f86ddbe59eecfb7267ca63c7b0284e6aa..c681fd3f1c263507a2b7dfe7e2211d4940efef62 100644 (file)
@@ -129,7 +129,7 @@ public class DefaultDataLabelTextPropertiesRecord
 
     protected void fillFields(byte [] data, short size, int offset)
     {
-        field_1_categoryDataType        = LittleEndian.getShort(data, 0 + offset);
+        field_1_categoryDataType        = LittleEndian.getShort(data, 0x0 + offset);
 
     }
 
index 38c8f2a29dbf9ec4a03fea12e2b5915ccf562b43..5b5b4cb14786f4f7e7baa0d8328dc1c36165337c 100644 (file)
@@ -130,11 +130,11 @@ public class FontBasisRecord
 
     protected void fillFields(byte [] data, short size, int offset)
     {
-        field_1_xBasis                  = LittleEndian.getShort(data, 0 + offset);
-        field_2_yBasis                  = LittleEndian.getShort(data, 2 + offset);
-        field_3_heightBasis             = LittleEndian.getShort(data, 4 + offset);
-        field_4_scale                   = LittleEndian.getShort(data, 6 + offset);
-        field_5_indexToFontTable        = LittleEndian.getShort(data, 8 + offset);
+        field_1_xBasis                  = LittleEndian.getShort(data, 0x0 + offset);
+        field_2_yBasis                  = LittleEndian.getShort(data, 0x2 + offset);
+        field_3_heightBasis             = LittleEndian.getShort(data, 0x4 + offset);
+        field_4_scale                   = LittleEndian.getShort(data, 0x6 + offset);
+        field_5_indexToFontTable        = LittleEndian.getShort(data, 0x8 + offset);
 
     }
 
index 7e1f07a131aa6493de4a2c90c385b853a325621b..addf32335ba129567a4a88d3b861de0485c253b3 100644 (file)
@@ -126,7 +126,7 @@ public class FontIndexRecord
 
     protected void fillFields(byte [] data, short size, int offset)
     {
-        field_1_fontIndex               = LittleEndian.getShort(data, 0 + offset);
+        field_1_fontIndex               = LittleEndian.getShort(data, 0x0 + offset);
 
     }
 
index c4fa52f8f7bd590f46cf2fad2542a1560093a26c..235974abed0848e5618fd82b4a35168e1366ae3e 100644 (file)
@@ -131,8 +131,8 @@ public class FrameRecord
 
     protected void fillFields(byte [] data, short size, int offset)
     {
-        field_1_borderType              = LittleEndian.getShort(data, 0 + offset);
-        field_2_options                 = LittleEndian.getShort(data, 2 + offset);
+        field_1_borderType              = LittleEndian.getShort(data, 0x0 + offset);
+        field_2_options                 = LittleEndian.getShort(data, 0x2 + offset);
 
     }
 
index 2a0eea0536607a2e1153f8a635c23641180c692f..225a9fd3dc53a4a244b75a90d31c65a85ed2cb97 100644 (file)
@@ -147,13 +147,13 @@ public class LegendRecord
 
     protected void fillFields(byte [] data, short size, int offset)
     {
-        field_1_xPosition               = LittleEndian.getInt(data, 0 + offset);
-        field_2_yPosition               = LittleEndian.getInt(data, 4 + offset);
-        field_3_xSize                   = LittleEndian.getInt(data, 8 + offset);
-        field_4_ySize                   = LittleEndian.getInt(data, 12 + offset);
-        field_5_type                    = data[ 16 + offset ];
-        field_6_spacing                 = data[ 17 + offset ];
-        field_7_options                 = LittleEndian.getShort(data, 18 + offset);
+        field_1_xPosition               = LittleEndian.getInt(data, 0x0 + offset);
+        field_2_yPosition               = LittleEndian.getInt(data, 0x4 + offset);
+        field_3_xSize                   = LittleEndian.getInt(data, 0x8 + offset);
+        field_4_ySize                   = LittleEndian.getInt(data, 0xc + offset);
+        field_5_type                    = data[ 0x10 + offset ];
+        field_6_spacing                 = data[ 0x11 + offset ];
+        field_7_options                 = LittleEndian.getShort(data, 0x12 + offset);
 
     }
 
index 6e7524e2eefc76eb5df503410208c7042215520c..48d66b43bab35956d92683d061227e5b4ff04dbf 100644 (file)
@@ -126,7 +126,7 @@ public class NumberFormatIndexRecord
 
     protected void fillFields(byte [] data, short size, int offset)
     {
-        field_1_formatIndex             = LittleEndian.getShort(data, 0 + offset);
+        field_1_formatIndex             = LittleEndian.getShort(data, 0x0 + offset);
 
     }
 
index 2af130c757cb93a6f78fee23e7662af665a3b05a..27c68bbc7709dd738faaf7b6e661a691ea552bbf 100644 (file)
@@ -127,8 +127,8 @@ public class PlotGrowthRecord
 
     protected void fillFields(byte [] data, short size, int offset)
     {
-        field_1_horizontalScale         = LittleEndian.getInt(data, 0 + offset);
-        field_2_verticalScale           = LittleEndian.getInt(data, 4 + offset);
+        field_1_horizontalScale         = LittleEndian.getInt(data, 0x0 + offset);
+        field_2_verticalScale           = LittleEndian.getInt(data, 0x4 + offset);
 
     }
 
index e690cf0ea88eec57f170d9e9387966d2a18e6cda..cf63a4a5482b2d53cbaafeed38a8045c84b8fcf4 100644 (file)
@@ -126,7 +126,7 @@ public class SeriesListRecord
 
     protected void fillFields(byte [] data, short size, int offset)
     {
-        field_1_seriesNumbers           = LittleEndian.getShortArray(data, 0 + offset);
+        field_1_seriesNumbers           = LittleEndian.getShortArray(data, 0x0 + offset);
 
     }
 
index c060284e6a9a59dbd4c9b2aa8a236e717093264d..d5f7933aa7b7ff11e3670c2ac1b30a6b336a6629 100644 (file)
@@ -143,12 +143,12 @@ public class SeriesRecord
 
     protected void fillFields(byte [] data, short size, int offset)
     {
-        field_1_categoryDataType        = LittleEndian.getShort(data, 0 + offset);
-        field_2_valuesDataType          = LittleEndian.getShort(data, 2 + offset);
-        field_3_numCategories           = LittleEndian.getShort(data, 4 + offset);
-        field_4_numValues               = LittleEndian.getShort(data, 6 + offset);
-        field_5_bubbleSeriesType        = LittleEndian.getShort(data, 8 + offset);
-        field_6_numBubbleValues         = LittleEndian.getShort(data, 10 + offset);
+        field_1_categoryDataType        = LittleEndian.getShort(data, 0x0 + offset);
+        field_2_valuesDataType          = LittleEndian.getShort(data, 0x2 + offset);
+        field_3_numCategories           = LittleEndian.getShort(data, 0x4 + offset);
+        field_4_numValues               = LittleEndian.getShort(data, 0x6 + offset);
+        field_5_bubbleSeriesType        = LittleEndian.getShort(data, 0x8 + offset);
+        field_6_numBubbleValues         = LittleEndian.getShort(data, 0xa + offset);
 
     }
 
index 0236f063fa8c9433aec1ff261e3338bc99a8a822..3c2a4038e5530b21c2c441353b4839b198e92f96 100644 (file)
@@ -126,7 +126,7 @@ public class UnitsRecord
 
     protected void fillFields(byte [] data, short size, int offset)
     {
-        field_1_units                   = LittleEndian.getShort(data, 0 + offset);
+        field_1_units                   = LittleEndian.getShort(data, 0x0 + offset);
 
     }
 
index f77010d725cb92d0743a1be735302ecf86ca9379..0bcbfde7ce836af151dd24ac88457f17c6c80e05 100644 (file)
@@ -140,12 +140,12 @@ public class ValueRangeRecord
 
     protected void fillFields(byte [] data, short size, int offset)
     {
-        field_1_minimumAxisValue        = LittleEndian.getDouble(data, 0 + offset);
-        field_2_maximumAxisValue        = LittleEndian.getDouble(data, 8 + offset);
-        field_3_majorIncrement          = LittleEndian.getDouble(data, 16 + offset);
-        field_4_minorIncrement          = LittleEndian.getDouble(data, 24 + offset);
-        field_5_categoryAxisCross       = LittleEndian.getDouble(data, 32 + offset);
-        field_6_options                 = LittleEndian.getShort(data, 40 + offset);
+        field_1_minimumAxisValue        = LittleEndian.getDouble(data, 0x0 + offset);
+        field_2_maximumAxisValue        = LittleEndian.getDouble(data, 0x8 + offset);
+        field_3_majorIncrement          = LittleEndian.getDouble(data, 0x10 + offset);
+        field_4_minorIncrement          = LittleEndian.getDouble(data, 0x18 + offset);
+        field_5_categoryAxisCross       = LittleEndian.getDouble(data, 0x20 + offset);
+        field_6_options                 = LittleEndian.getShort(data, 0x28 + offset);
 
     }
 
diff --git a/src/records/definitions/area_format_record.xml b/src/records/definitions/area_format_record.xml
new file mode 100644 (file)
index 0000000..b5cacc3
--- /dev/null
@@ -0,0 +1,17 @@
+<record id="0x100a" name="AreaFormat" package="org.apache.poi.hssf.record">
+    <suffix>Record</suffix>
+    <extends>Record</extends>
+    <description>The area format record is used to define the colours and patterns for an area.</description>
+    <author>Glen Stampoultzis (glens at apache.org)</author>
+    <fields>
+        <field type="int" size="4" name="foreground color" description="foreground color in RGB"/>
+        <field type="int" size="4" name="background color" description="background color in RGB"/>
+        <field type="int" size="2" name="pattern" description="fill pattern"/>
+        <field type="int" size="2" name="format flags">
+            <bit number="0" name="automatic" description="automatic formatting"/>
+            <bit number="1" name="invert" description="swap foreground and background colours when data is negative"/>
+        </field>
+        <field type="int" size="2" name="forecolor index" description="index to foreground color"/>
+        <field type="int" size="2" name="backcolor index" description="index to background color"/>
+    </fields>
+</record>
diff --git a/src/testcases/org/apache/poi/hssf/record/TestAreaFormatRecord.java b/src/testcases/org/apache/poi/hssf/record/TestAreaFormatRecord.java
new file mode 100644 (file)
index 0000000..375d841
--- /dev/null
@@ -0,0 +1,125 @@
+
+/* ====================================================================
+ * The Apache Software License, Version 1.1
+ *
+ * Copyright (c) 2002 The Apache Software Foundation.  All rights
+ * reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in
+ *    the documentation and/or other materials provided with the
+ *    distribution.
+ *
+ * 3. The end-user documentation included with the redistribution,
+ *    if any, must include the following acknowledgment:
+ *       "This product includes software developed by the
+ *        Apache Software Foundation (http://www.apache.org/)."
+ *    Alternately, this acknowledgment may appear in the software itself,
+ *    if and wherever such third-party acknowledgments normally appear.
+ *
+ * 4. The names "Apache" and "Apache Software Foundation" and
+ *    "Apache POI" must not be used to endorse or promote products
+ *    derived from this software without prior written permission. For
+ *    written permission, please contact apache@apache.org.
+ *
+ * 5. Products derived from this software may not be called "Apache",
+ *    "Apache POI", nor may "Apache" appear in their name, without
+ *    prior written permission of the Apache Software Foundation.
+ *
+ * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
+ * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
+ * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+ * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
+ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ * ====================================================================
+ *
+ * This software consists of voluntary contributions made by many
+ * individuals on behalf of the Apache Software Foundation.  For more
+ * information on the Apache Software Foundation, please see
+ * <http://www.apache.org/>.
+ */
+
+
+package org.apache.poi.hssf.record;
+
+
+import junit.framework.TestCase;
+
+/**
+ * Tests the serialization and deserialization of the AreaFormatRecord
+ * class works correctly.  Test data taken directly from a real
+ * Excel file.
+ *
+
+ * @author Glen Stampoultzis (glens at apache.org)
+ */
+public class TestAreaFormatRecord
+        extends TestCase
+{
+    byte[] data = new byte[] {
+        (byte)0xFF,(byte)0xFF,(byte)0xFF,(byte)0x00,    // forecolor
+        (byte)0x00,(byte)0x00,(byte)0x00,(byte)0x00,    // backcolor
+        (byte)0x01,(byte)0x00,                          // pattern
+        (byte)0x01,(byte)0x00,                          // format
+        (byte)0x4E,(byte)0x00,                          // forecolor index
+        (byte)0x4D,(byte)0x00                           // backcolor index
+
+    };
+
+    public TestAreaFormatRecord(String name)
+    {
+        super(name);
+    }
+
+    public void testLoad()
+            throws Exception
+    {
+
+        AreaFormatRecord record = new AreaFormatRecord((short)0x100a, (short)data.length, data);
+        assertEquals( 0xFFFFFF, record.getForegroundColor());
+        assertEquals( 0x000000, record.getBackgroundColor());
+        assertEquals( 1, record.getPattern());
+        assertEquals( 1, record.getFormatFlags());
+        assertEquals( true, record.isAutomatic() );
+        assertEquals( false, record.isInvert() );
+        assertEquals( 0x4e, record.getForecolorIndex());
+        assertEquals( 0x4d, record.getBackcolorIndex());
+
+
+        assertEquals( 20, record.getRecordSize() );
+
+        record.validateSid((short)0x100a);
+    }
+
+    public void testStore()
+    {
+        AreaFormatRecord record = new AreaFormatRecord();
+        record.setForegroundColor( 0xFFFFFF );
+        record.setBackgroundColor( 0x000000 );
+        record.setPattern( (short)1 );
+        record.setAutomatic( true );
+        record.setInvert( false );
+        record.setForecolorIndex( (short)0x4e );
+        record.setBackcolorIndex( (short)0x4d );
+
+
+        byte [] recordBytes = record.serialize();
+        assertEquals(recordBytes.length - 4, data.length);
+        for (int i = 0; i < data.length; i++)
+            assertEquals("At offset " + i, data[i], recordBytes[i+4]);
+    }
+}