]> source.dussan.org Git - poi.git/commitdiff
bug 23630 - fixed spelling mistake in constant name
authorJosh Micich <josh@apache.org>
Sun, 11 May 2008 01:30:56 +0000 (01:30 +0000)
committerJosh Micich <josh@apache.org>
Sun, 11 May 2008 01:30:56 +0000 (01:30 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@655216 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/hssf/record/PaneRecord.java
src/records/definitions/pane_record.xml

index 6f13ad0922b3ab99d4d1a4fbf36a4f055a2e21c7..f02e4116555bf9253c9e769f47b51d2c09e1da05 100644 (file)
@@ -1,4 +1,3 @@
-
 /* ====================================================================
    Licensed to the Apache Software Foundation (ASF) under one or more
    contributor license agreements.  See the NOTICE file distributed with
    See the License for the specific language governing permissions and
    limitations under the License.
 ==================================================================== */
-        
 
 package org.apache.poi.hssf.record;
 
 
-
-import org.apache.poi.util.*;
+import org.apache.poi.util.HexDump;
+import org.apache.poi.util.LittleEndian;
 
 /**
  * Describes the frozen and unfozen panes.
@@ -30,9 +28,7 @@ import org.apache.poi.util.*;
 
  * @author Glen Stampoultzis (glens at apache.org)
  */
-public class PaneRecord
-    extends Record
-{
+public final class PaneRecord extends Record {
     public final static short      sid                             = 0x41;
     private  short      field_1_x;
     private  short      field_2_y;
@@ -42,7 +38,10 @@ public class PaneRecord
     public final static short       ACTIVE_PANE_LOWER_RIGHT        = 0;
     public final static short       ACTIVE_PANE_UPPER_RIGHT        = 1;
     public final static short       ACTIVE_PANE_LOWER_LEFT         = 2;
+    // TODO - remove obsolete field (it was deprecated May-2008 v3.1)
+    /** @deprecated use ACTIVE_PANE_UPPER_LEFT */
     public final static short       ACTIVE_PANE_UPER_LEFT          = 3;
+    public final static short       ACTIVE_PANE_UPPER_LEFT         = 3;
 
 
     public PaneRecord()
@@ -82,7 +81,6 @@ public class PaneRecord
         field_3_topRow                 = in.readShort();
         field_4_leftColumn             = in.readShort();
         field_5_activePane             = in.readShort();
-
     }
 
     public String toString()
@@ -229,7 +227,7 @@ public class PaneRecord
      *        ACTIVE_PANE_LOWER_RIGHT
      *        ACTIVE_PANE_UPPER_RIGHT
      *        ACTIVE_PANE_LOWER_LEFT
-     *        ACTIVE_PANE_UPER_LEFT
+     *        ACTIVE_PANE_UPPER_LEFT
      */
     public short getActivePane()
     {
@@ -244,16 +242,10 @@ public class PaneRecord
      *        ACTIVE_PANE_LOWER_RIGHT
      *        ACTIVE_PANE_UPPER_RIGHT
      *        ACTIVE_PANE_LOWER_LEFT
-     *        ACTIVE_PANE_UPER_LEFT
+     *        ACTIVE_PANE_UPPER_LEFT
      */
     public void setActivePane(short field_5_activePane)
     {
         this.field_5_activePane = field_5_activePane;
     }
-
-
-}  // END OF CLASS
-
-
-
-
+}
index c6f93b675c1507b63504fd69d86e4f9e86487012..436443113abda3fef51edc2a09a88bd754c5144f 100644 (file)
@@ -31,7 +31,7 @@
             <const name="lower right" value="0"/>
             <const name="upper right" value="1"/>
             <const name="lower left" value="2"/>
-            <const name="uper left" value="3"/>
+            <const name="upper left" value="3"/>
         </field>
     </fields>
 </record>