]> source.dussan.org Git - poi.git/commitdiff
Merged revisions 703092 via svnmerge from
authorJosh Micich <josh@apache.org>
Thu, 9 Oct 2008 08:03:43 +0000 (08:03 +0000)
committerJosh Micich <josh@apache.org>
Thu, 9 Oct 2008 08:03:43 +0000 (08:03 +0000)
https://svn.apache.org/repos/asf/poi/trunk

........
  r703092 | josh | 2008-10-09 00:44:37 -0700 (Thu, 09 Oct 2008) | 1 line

  converted short HSSFCell.getCellNum to int getColumnIndex
........

git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@703096 13f79535-47bb-0310-9956-ffa450edef68

12 files changed:
src/java/org/apache/poi/hssf/usermodel/HSSFCell.java
src/java/org/apache/poi/hssf/usermodel/HSSFEvaluationCell.java
src/java/org/apache/poi/hssf/usermodel/HSSFRow.java
src/ooxml/interfaces-jdk14/org/apache/poi/ss/usermodel/Cell.java
src/ooxml/interfaces-jdk15/org/apache/poi/ss/usermodel/Cell.java
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCell.java
src/testcases/org/apache/poi/hssf/record/formula/functions/TestIndexFunctionFromSpreadsheet.java
src/testcases/org/apache/poi/hssf/record/formula/functions/TestLookupFunctionsFromSpreadsheet.java
src/testcases/org/apache/poi/hssf/usermodel/TestBug42464.java
src/testcases/org/apache/poi/hssf/usermodel/TestBugs.java
src/testcases/org/apache/poi/hssf/usermodel/TestHSSFComment.java
src/testcases/org/apache/poi/hssf/usermodel/TestHSSFRow.java

index a6a150032158a425a9b52821830142fb9aaa42d8..2554f539f9c6034e7011f0f95d7edb84423a7283 100644 (file)
@@ -232,7 +232,7 @@ public class HSSFCell implements Cell {
     /**
      * Set the cell's number within the row (0 based).
      * @param num  short the cell number
-     * @deprecated Doesn't update the row's idea of what cell this is, use {@link HSSFRow#moveCell(HSSFCell, short)} instead
+     * @deprecated (Jan 2008) Doesn't update the row's idea of what cell this is, use {@link HSSFRow#moveCell(HSSFCell, short)} instead
      */
     public void setCellNum(short num)
     {
@@ -250,13 +250,14 @@ public class HSSFCell implements Cell {
     }
 
     /**
-     *  get the cell's number within the row
-     * @return short reperesenting the column number (logical!)
+     * @deprecated (Oct 2008) use {@link #getColumnIndex()}
      */
-
-    public short getCellNum()
-    {
-        return record.getColumn();
+    public short getCellNum() {
+        return (short) getColumnIndex();
+    }
+    
+    public int getColumnIndex() {
+       return record.getColumn() & 0xFFFF;
     }
 
     /**
index e5e7116ae34a672b62f18f9c408fc675ea400d23..97b581724a75ce8c05f3bb25ca658bae53aae7c8 100644 (file)
@@ -55,7 +55,7 @@ final class HSSFEvaluationCell implements EvaluationCell {
                return _cell.getCellType();
        }
        public int getColumnIndex() {
-               return _cell.getCellNum();
+               return _cell.getColumnIndex();
        }
        public int getErrorCellValue() {
                return _cell.getErrorCellValue();
index 1e211cced9930e302b728fb83c9af5268cbca2da..3668a53393342a8ce63c4ed2686f5331ba3a1e84 100644 (file)
@@ -155,7 +155,7 @@ public final class HSSFRow implements Comparable, Row {
     }
     private void removeCell(HSSFCell cell, boolean alsoRemoveRecords) {
         
-        short column=cell.getCellNum();
+        int column=cell.getColumnIndex();
         if(column < 0) {
             throw new RuntimeException("Negative cell indexes not allowed");
         }
@@ -169,10 +169,10 @@ public final class HSSFRow implements Comparable, Row {
             sheet.getSheet().removeValueRecord(getRowNum(), cval);
         }
         
-        if (cell.getCellNum()+1 == row.getLastCol()) {
+        if (cell.getColumnIndex()+1 == row.getLastCol()) {
             row.setLastCol((short) (findLastCell(row.getLastCol())+1));
         }
-        if (cell.getCellNum() == row.getFirstCol()) {
+        if (cell.getColumnIndex() == row.getFirstCol()) {
             row.setFirstCol(findFirstCell(row.getFirstCol()));
         }
     }
@@ -252,7 +252,7 @@ public final class HSSFRow implements Comparable, Row {
         }
         
         // Check it's one of ours
-        if(! cells[cell.getCellNum()].equals(cell)) {
+        if(! cells[cell.getColumnIndex()].equals(cell)) {
             throw new IllegalArgumentException("Asked to move a cell, but it didn't belong to our row");
         }
         
@@ -268,7 +268,7 @@ public final class HSSFRow implements Comparable, Row {
      */
     private void addCell(HSSFCell cell) {
 
-        short column=cell.getCellNum();
+        int column=cell.getColumnIndex();
         // re-allocate cells array as required.
         if(column>=cells.length) {
             HSSFCell[] oldCells=cells;
@@ -283,7 +283,7 @@ public final class HSSFRow implements Comparable, Row {
         
         // fix up firstCol and lastCol indexes
         if (row.getFirstCol() == -1 || column < row.getFirstCol()) {
-            row.setFirstCol(column);
+            row.setFirstCol((short)column);
         }
         
         if (row.getLastCol() == -1 || column >= row.getLastCol()) {
index 823b6191c8339628d27e599afc7ce72007e2cce1..a42fbc2643ab8ffb2232a534dfb9d4e3fd71373d 100644 (file)
@@ -77,7 +77,15 @@ public interface Cell {
 
 
     int getCellType();
+    /**
+     * @deprecated (Oct 2008) use {@link #getColumnIndex()}
+     */
     short getCellNum();
+    
+    /**
+     * @return the cell's column index (zero based)
+     */
+    int getColumnIndex();
     int getRowIndex();
 
     String getCellFormula();
index 331dd1e78b0dafa2ff0f4f2fc6ee820b5573471a..15e7f1b8226c8b0eb07bed1d5706bc868978a0c1 100644 (file)
@@ -98,11 +98,14 @@ public interface Cell {
     void setCellNum(short num);
 
     /**
-     *  get the cell's number within the row
-     * @return short reperesenting the column number (logical!)
+     * @deprecated (Oct 2008) use {@link #getColumnIndex()}
      */
-
     short getCellNum();
+    
+    /**
+     * @return the cell's column index (zero based)
+     */
+    int getColumnIndex();
 
     int getRowIndex();
 
index 73952d99a7cf83fa347b9ef066b3101aa0e4e493..9d52a7fa55520e17b42e2a96745fbb4516b499da 100644 (file)
@@ -107,8 +107,14 @@ public final class XSSFCell implements Cell {
         return this.cell.getF().getStringValue();
     }
 
+    /**
+     * @deprecated use {@link #getColumnIndex()}
+     */
     public short getCellNum() {
-        return (short)this.cellNum;
+        return (short)getColumnIndex();
+    }
+    public int getColumnIndex() {
+       return this.cellNum;
     }
        public int getRowIndex() {
                return row.getRowNum();
index 2b0f776f73eb5614d78ea0ccd052fa9bfe962d01..e40578033dc552a41a0c7ae36d17d96ab7504433 100644 (file)
@@ -205,10 +205,10 @@ public final class TestIndexFunctionFromSpreadsheet extends TestCase {
        }
 
 
-       private static String formatTestCaseDetails(String sheetName, int rowNum, HSSFCell c) {
+       private static String formatTestCaseDetails(String sheetName, int rowIndex, HSSFCell c) {
 
                StringBuffer sb = new StringBuffer();
-               CellReference cr = new CellReference(sheetName, rowNum, c.getCellNum(), false, false);
+               CellReference cr = new CellReference(sheetName, rowIndex, c.getColumnIndex(), false, false);
                sb.append(cr.formatAsString());
                sb.append(" {=").append(c.getCellFormula()).append("}");
                return sb.toString();
index 5bacdbfca98182d5fe86d528aa8fa9148dbc6757..b0b6ece7f1cd1d6d511cd00d4b6c081a5015dfff 100644 (file)
@@ -256,11 +256,11 @@ public final class TestLookupFunctionsFromSpreadsheet extends TestCase {
        }
 
 
-       private static String formatTestCaseDetails(String sheetName, int rowNum, HSSFCell c, String currentGroupComment,
+       private static String formatTestCaseDetails(String sheetName, int rowIndex, HSSFCell c, String currentGroupComment,
                        String rowComment) {
 
                StringBuffer sb = new StringBuffer();
-               CellReference cr = new CellReference(sheetName, rowNum, c.getCellNum(), false, false);
+               CellReference cr = new CellReference(sheetName, rowIndex, c.getColumnIndex(), false, false);
                sb.append(cr.formatAsString());
                sb.append(" {=").append(c.getCellFormula()).append("}");
 
index 73ee3f8486515be4850be00bb0b59f542a35a3c6..2c2c2ea0c380265e9cea17586625ffa0101bc797 100644 (file)
@@ -66,7 +66,7 @@ public final class TestBug42464 extends TestCase {
                        FormulaRecord r = record.getFormulaRecord();
                        Ptg[] ptgs = r.getParsedExpression();
                        
-                       String cellRef = new CellReference(row.getRowNum(), cell.getCellNum(), false, false).formatAsString();
+                       String cellRef = new CellReference(row.getRowNum(), cell.getColumnIndex(), false, false).formatAsString();
                        if(false && cellRef.equals("BP24")) { // TODO - replace System.out.println()s with asserts
                                System.out.print(cellRef);
                                System.out.println(" - has " + ptgs.length + " ptgs:");
index 0178d336fe424fd4785454dad72f1a7b058a9c1c..4c8604b6986e20567a829f5465dfbfce4d195745 100644 (file)
@@ -619,7 +619,7 @@ public final class TestBugs extends TestCase {
             int cellNum = 0;
             for (Iterator it2 = row.cellIterator(); it2.hasNext(); cellNum++) {
                 HSSFCell cell = (HSSFCell)it2.next();
-                assertEquals(cellNum, cell.getCellNum());
+                assertEquals(cellNum, cell.getColumnIndex());
             }
         }
     }
index 4ea0762dda577b6fe082c15c628cae5b8d90e936..9525a181a14a4cfe5caacc8dc3cf8635088a0873 100644 (file)
@@ -134,7 +134,7 @@ public final class TestHSSFComment extends TestCase {
              assertFalse("cells in the second column have not empyy notes", 
                      "".equals(comment.getString().getString()));
              assertEquals(rownum, comment.getRow());
-             assertEquals(cell.getCellNum(), comment.getColumn());
+             assertEquals(cell.getColumnIndex(), comment.getColumn());
          }
      }
 
index c9b3bc74d1120c714fea2285f1c4b4def8039dde..8e7864fad2a61c9311f528a17ec7f87498488614 100644 (file)
@@ -20,7 +20,6 @@ package org.apache.poi.hssf.usermodel;
 import junit.framework.TestCase;
 
 import org.apache.poi.hssf.HSSFTestDataSamples;
-import org.apache.poi.ss.usermodel.Row.MissingCellPolicy;
 
 /**
  * Test HSSFRow is okay.
@@ -152,7 +151,7 @@ public final class TestHSSFRow extends TestCase {
         assertNull(row.getCell(1));
         assertNotNull(row.getCell(5));
 
-        assertEquals(5, cellB2.getCellNum());
+        assertEquals(5, cellB2.getColumnIndex());
         assertEquals(2, row.getFirstCellNum());
         assertEquals(6, row.getLastCellNum());
     }
@@ -258,12 +257,12 @@ public final class TestHSSFRow extends TestCase {
         assertEquals(HSSFCell.CELL_TYPE_NUMERIC, row.getCell(5, HSSFRow.CREATE_NULL_AS_BLANK).getCellType());
         
         // Check created ones get the right column
-        assertEquals((short)0, row.getCell(0, HSSFRow.CREATE_NULL_AS_BLANK).getCellNum());
-        assertEquals((short)1, row.getCell(1, HSSFRow.CREATE_NULL_AS_BLANK).getCellNum());
-        assertEquals((short)2, row.getCell(2, HSSFRow.CREATE_NULL_AS_BLANK).getCellNum());
-        assertEquals((short)3, row.getCell(3, HSSFRow.CREATE_NULL_AS_BLANK).getCellNum());
-        assertEquals((short)4, row.getCell(4, HSSFRow.CREATE_NULL_AS_BLANK).getCellNum());
-        assertEquals((short)5, row.getCell(5, HSSFRow.CREATE_NULL_AS_BLANK).getCellNum());
+        assertEquals(0, row.getCell(0, HSSFRow.CREATE_NULL_AS_BLANK).getColumnIndex());
+        assertEquals(1, row.getCell(1, HSSFRow.CREATE_NULL_AS_BLANK).getColumnIndex());
+        assertEquals(2, row.getCell(2, HSSFRow.CREATE_NULL_AS_BLANK).getColumnIndex());
+        assertEquals(3, row.getCell(3, HSSFRow.CREATE_NULL_AS_BLANK).getColumnIndex());
+        assertEquals(4, row.getCell(4, HSSFRow.CREATE_NULL_AS_BLANK).getColumnIndex());
+        assertEquals(5, row.getCell(5, HSSFRow.CREATE_NULL_AS_BLANK).getColumnIndex());
         
         
         // Now change the cell policy on the workbook, check