From e2cec361f37af84cae51d8987a3a5590adf88b6b Mon Sep 17 00:00:00 2001 From: Josh Micich Date: Sun, 11 May 2008 01:30:56 +0000 Subject: [PATCH] bug 23630 - fixed spelling mistake in constant name git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@655216 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/poi/hssf/record/PaneRecord.java | 26 +++++++------------ src/records/definitions/pane_record.xml | 2 +- 2 files changed, 10 insertions(+), 18 deletions(-) diff --git a/src/java/org/apache/poi/hssf/record/PaneRecord.java b/src/java/org/apache/poi/hssf/record/PaneRecord.java index 6f13ad0922..f02e411655 100644 --- a/src/java/org/apache/poi/hssf/record/PaneRecord.java +++ b/src/java/org/apache/poi/hssf/record/PaneRecord.java @@ -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 @@ 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 - - - - +} diff --git a/src/records/definitions/pane_record.xml b/src/records/definitions/pane_record.xml index c6f93b675c..436443113a 100644 --- a/src/records/definitions/pane_record.xml +++ b/src/records/definitions/pane_record.xml @@ -31,7 +31,7 @@ - + -- 2.39.5