You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by jo...@apache.org on 2008/05/11 03:30:56 UTC

svn commit: r655216 - in /poi/trunk/src: java/org/apache/poi/hssf/record/PaneRecord.java records/definitions/pane_record.xml

Author: josh
Date: Sat May 10 18:30:56 2008
New Revision: 655216

URL: http://svn.apache.org/viewvc?rev=655216&view=rev
Log:
bug 23630 - fixed spelling mistake in constant name 

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

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/PaneRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/PaneRecord.java?rev=655216&r1=655215&r2=655216&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/PaneRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/PaneRecord.java Sat May 10 18:30:56 2008
@@ -1,4 +1,3 @@
-
 /* ====================================================================
    Licensed to the Apache Software Foundation (ASF) under one or more
    contributor license agreements.  See the NOTICE file distributed with
@@ -15,13 +14,12 @@
    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 @@
 
  * @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 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 @@
         field_3_topRow                 = in.readShort();
         field_4_leftColumn             = in.readShort();
         field_5_activePane             = in.readShort();
-
     }
 
     public String toString()
@@ -229,7 +227,7 @@
      *        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 @@
      *        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
-
-
-
-
+}

Modified: poi/trunk/src/records/definitions/pane_record.xml
URL: http://svn.apache.org/viewvc/poi/trunk/src/records/definitions/pane_record.xml?rev=655216&r1=655215&r2=655216&view=diff
==============================================================================
--- poi/trunk/src/records/definitions/pane_record.xml (original)
+++ poi/trunk/src/records/definitions/pane_record.xml Sat May 10 18:30:56 2008
@@ -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>



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org