aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUgo Cei <ugo@apache.org>2008-01-24 10:53:39 +0000
committerUgo Cei <ugo@apache.org>2008-01-24 10:53:39 +0000
commite378439912477fdf499e38678d257b6ee5e22579 (patch)
tree5751a21e7d6ac3b59721619887f742fa7b422f5a
parent8488dfe816980ad91622e56444cf5ef904f7465e (diff)
downloadpoi-e378439912477fdf499e38678d257b6ee5e22579.tar.gz
poi-e378439912477fdf499e38678d257b6ee5e22579.zip
Make HSSF* classes compile with JDK 1.4 interfaces.
git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@614838 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--src/java/org/apache/poi/hssf/usermodel/HSSFCell.java6
-rw-r--r--src/java/org/apache/poi/hssf/usermodel/HSSFCellStyle.java6
-rw-r--r--src/java/org/apache/poi/hssf/usermodel/HSSFComment.java9
-rw-r--r--src/java/org/apache/poi/hssf/usermodel/HSSFFont.java94
-rw-r--r--src/java/org/apache/poi/hssf/usermodel/HSSFRichTextString.java2
-rw-r--r--src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java13
-rw-r--r--src/ooxml/interfaces-jdk14/org/apache/poi/ss/usermodel/Cell.java52
-rw-r--r--src/ooxml/interfaces-jdk14/org/apache/poi/ss/usermodel/Font.java98
8 files changed, 167 insertions, 113 deletions
diff --git a/src/java/org/apache/poi/hssf/usermodel/HSSFCell.java b/src/java/org/apache/poi/hssf/usermodel/HSSFCell.java
index e076047c5e..f7e90d0ce4 100644
--- a/src/java/org/apache/poi/hssf/usermodel/HSSFCell.java
+++ b/src/java/org/apache/poi/hssf/usermodel/HSSFCell.java
@@ -880,7 +880,7 @@ public class HSSFCell implements Cell
public void setCellStyle(CellStyle style)
{
- record.setXFIndex(style.getIndex());
+ record.setXFIndex(((HSSFCellStyle) style).getIndex());
}
/**
@@ -1006,9 +1006,9 @@ public class HSSFCell implements Cell
* @param comment comment associated with this cell
*/
public void setCellComment(Comment comment){
- comment.setRow((short)record.getRow());
- comment.setColumn(record.getColumn());
this.comment = (HSSFComment) comment;
+ this.comment.setRow((short)record.getRow());
+ this.comment.setColumn(record.getColumn());
}
/**
diff --git a/src/java/org/apache/poi/hssf/usermodel/HSSFCellStyle.java b/src/java/org/apache/poi/hssf/usermodel/HSSFCellStyle.java
index fa8489cbab..a0837cdd01 100644
--- a/src/java/org/apache/poi/hssf/usermodel/HSSFCellStyle.java
+++ b/src/java/org/apache/poi/hssf/usermodel/HSSFCellStyle.java
@@ -291,7 +291,7 @@ public class HSSFCellStyle implements CellStyle
public void setFont(Font font)
{
format.setIndentNotParentFont(true);
- short fontindex = font.getIndex();
+ short fontindex = ((HSSFFont) font).getIndex();
format.setFontIndex(fontindex);
}
@@ -310,8 +310,8 @@ public class HSSFCellStyle implements CellStyle
* @see org.apache.poi.hssf.usermodel.HSSFCellStyle#getFontIndex()
* @see org.apache.poi.hssf.usermodel.HSSFWorkbook#getFontAt(short)
*/
- public Font getFont(org.apache.poi.ss.usermodel.Workbook parentWorkbook) {
- return parentWorkbook.getFontAt(getFontIndex());
+ public HSSFFont getFont(org.apache.poi.ss.usermodel.Workbook parentWorkbook) {
+ return ((HSSFWorkbook) parentWorkbook).getFontAt(getFontIndex());
}
/**
diff --git a/src/java/org/apache/poi/hssf/usermodel/HSSFComment.java b/src/java/org/apache/poi/hssf/usermodel/HSSFComment.java
index 08d209a272..8ae4fb8926 100644
--- a/src/java/org/apache/poi/hssf/usermodel/HSSFComment.java
+++ b/src/java/org/apache/poi/hssf/usermodel/HSSFComment.java
@@ -144,14 +144,15 @@ public class HSSFComment extends HSSFTextbox implements Comment {
* @param string Sets the rich text string used by this object.
*/
public void setString( RichTextString string ) {
+ HSSFRichTextString hstring = (HSSFRichTextString) string;
//if font is not set we must set the default one
- if (string.numFormattingRuns() == 0) string.applyFont((short)0);
+ if (hstring.numFormattingRuns() == 0) hstring.applyFont((short)0);
if (txo != null) {
- int frLength = ( string.numFormattingRuns() + 1 ) * 8;
+ int frLength = ( hstring.numFormattingRuns() + 1 ) * 8;
txo.setFormattingRunLength( (short) frLength );
- txo.setTextLength( (short) string.length() );
- txo.setStr( (HSSFRichTextString) string );
+ txo.setTextLength( (short) hstring.length() );
+ txo.setStr( hstring );
}
super.setString(string);
}
diff --git a/src/java/org/apache/poi/hssf/usermodel/HSSFFont.java b/src/java/org/apache/poi/hssf/usermodel/HSSFFont.java
index 2827043575..5c1d4dd8c4 100644
--- a/src/java/org/apache/poi/hssf/usermodel/HSSFFont.java
+++ b/src/java/org/apache/poi/hssf/usermodel/HSSFFont.java
@@ -39,100 +39,6 @@ import org.apache.poi.ss.usermodel.Font;
public class HSSFFont implements Font
{
- /**
- * Arial font
- */
-
- public final static String FONT_ARIAL = "Arial";
-
- /**
- * Normal boldness (not bold)
- */
-
- public final static short BOLDWEIGHT_NORMAL = 0x190;
-
- /**
- * Bold boldness (bold)
- */
-
- public final static short BOLDWEIGHT_BOLD = 0x2bc;
-
- /**
- * normal type of black color.
- */
-
- public final static short COLOR_NORMAL = 0x7fff;
-
- /**
- * Dark Red color
- */
-
- public final static short COLOR_RED = 0xa;
-
- /**
- * no type offsetting (not super or subscript)
- */
-
- public final static short SS_NONE = 0;
-
- /**
- * superscript
- */
-
- public final static short SS_SUPER = 1;
-
- /**
- * subscript
- */
-
- public final static short SS_SUB = 2;
-
- /**
- * not underlined
- */
-
- public final static byte U_NONE = 0;
-
- /**
- * single (normal) underline
- */
-
- public final static byte U_SINGLE = 1;
-
- /**
- * double underlined
- */
-
- public final static byte U_DOUBLE = 2;
-
- /**
- * accounting style single underline
- */
-
- public final static byte U_SINGLE_ACCOUNTING = 0x21;
-
- /**
- * accounting style double underline
- */
-
- public final static byte U_DOUBLE_ACCOUNTING = 0x22;
-
- /**
- * ANSI character set
- */
- public final static byte ANSI_CHARSET = 0;
-
- /**
- * Default character set.
- */
- public final static byte DEFAULT_CHARSET = 1;
-
- /**
- * Symbol character set
- */
- public final static byte SYMBOL_CHARSET = 2;
-
-
private FontRecord font;
private short index;
diff --git a/src/java/org/apache/poi/hssf/usermodel/HSSFRichTextString.java b/src/java/org/apache/poi/hssf/usermodel/HSSFRichTextString.java
index bd9a4cd792..526925a024 100644
--- a/src/java/org/apache/poi/hssf/usermodel/HSSFRichTextString.java
+++ b/src/java/org/apache/poi/hssf/usermodel/HSSFRichTextString.java
@@ -140,7 +140,7 @@ public class HSSFRichTextString
*/
public void applyFont(int startIndex, int endIndex, Font font)
{
- applyFont(startIndex, endIndex, font.getIndex());
+ applyFont(startIndex, endIndex, ((HSSFFont) font).getIndex());
}
/**
diff --git a/src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java b/src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java
index aa7ea2db48..9fc0091ec4 100644
--- a/src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java
+++ b/src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java
@@ -242,28 +242,29 @@ public class HSSFSheet implements org.apache.poi.ss.usermodel.Sheet
public void removeRow(Row row)
{
+ HSSFRow hrow = (HSSFRow) row;
sheet.setLoc(sheet.getDimsLoc());
if (rows.size() > 0)
{
rows.remove(row);
- if (row.getRowNum() == getLastRowNum())
+ if (hrow.getRowNum() == getLastRowNum())
{
lastrow = findLastRow(lastrow);
}
- if (row.getRowNum() == getFirstRowNum())
+ if (hrow.getRowNum() == getFirstRowNum())
{
firstrow = findFirstRow(firstrow);
}
- Iterator iter = row.cellIterator();
+ Iterator iter = hrow.cellIterator();
while (iter.hasNext())
{
HSSFCell cell = (HSSFCell) iter.next();
- sheet.removeValueRecord(row.getRowNum(),
+ sheet.removeValueRecord(hrow.getRowNum(),
cell.getCellValueRecord());
}
- sheet.removeRow(((HSSFRow) row).getRowRecord());
+ sheet.removeRow(hrow.getRowRecord());
}
}
@@ -1650,7 +1651,7 @@ public class HSSFSheet implements org.apache.poi.ss.usermodel.Sheet
* @param style the style to set
*/
public void setDefaultColumnStyle(short column, CellStyle style) {
- sheet.setColumn(column, new Short(style.getIndex()), null, null, null, null);
+ sheet.setColumn(column, new Short(((HSSFCellStyle) style).getIndex()), null, null, null, null);
}
/**
diff --git a/src/ooxml/interfaces-jdk14/org/apache/poi/ss/usermodel/Cell.java b/src/ooxml/interfaces-jdk14/org/apache/poi/ss/usermodel/Cell.java
index 805a6b1c83..65f6447203 100644
--- a/src/ooxml/interfaces-jdk14/org/apache/poi/ss/usermodel/Cell.java
+++ b/src/ooxml/interfaces-jdk14/org/apache/poi/ss/usermodel/Cell.java
@@ -17,4 +17,54 @@
package org.apache.poi.ss.usermodel;
-public interface Cell {}
+public interface Cell {
+
+ /**
+ * Numeric Cell type (0)
+ * @see #setCellType(int)
+ * @see #getCellType()
+ */
+
+ public final static int CELL_TYPE_NUMERIC = 0;
+
+ /**
+ * String Cell type (1)
+ * @see #setCellType(int)
+ * @see #getCellType()
+ */
+
+ public final static int CELL_TYPE_STRING = 1;
+
+ /**
+ * Formula Cell type (2)
+ * @see #setCellType(int)
+ * @see #getCellType()
+ */
+
+ public final static int CELL_TYPE_FORMULA = 2;
+
+ /**
+ * Blank Cell type (3)
+ * @see #setCellType(int)
+ * @see #getCellType()
+ */
+
+ public final static int CELL_TYPE_BLANK = 3;
+
+ /**
+ * Boolean Cell type (4)
+ * @see #setCellType(int)
+ * @see #getCellType()
+ */
+
+ public final static int CELL_TYPE_BOOLEAN = 4;
+
+ /**
+ * Error Cell type (5)
+ * @see #setCellType(int)
+ * @see #getCellType()
+ */
+
+ public final static int CELL_TYPE_ERROR = 5;
+
+}
diff --git a/src/ooxml/interfaces-jdk14/org/apache/poi/ss/usermodel/Font.java b/src/ooxml/interfaces-jdk14/org/apache/poi/ss/usermodel/Font.java
index aad44e30c8..f19bac4cc2 100644
--- a/src/ooxml/interfaces-jdk14/org/apache/poi/ss/usermodel/Font.java
+++ b/src/ooxml/interfaces-jdk14/org/apache/poi/ss/usermodel/Font.java
@@ -17,4 +17,100 @@
package org.apache.poi.ss.usermodel;
-public interface Font {}
+public interface Font {
+
+ /**
+ * Arial font
+ */
+
+ public final static String FONT_ARIAL = "Arial";
+
+ /**
+ * Normal boldness (not bold)
+ */
+
+ public final static short BOLDWEIGHT_NORMAL = 0x190;
+
+ /**
+ * Bold boldness (bold)
+ */
+
+ public final static short BOLDWEIGHT_BOLD = 0x2bc;
+
+ /**
+ * normal type of black color.
+ */
+
+ public final static short COLOR_NORMAL = 0x7fff;
+
+ /**
+ * Dark Red color
+ */
+
+ public final static short COLOR_RED = 0xa;
+
+ /**
+ * no type offsetting (not super or subscript)
+ */
+
+ public final static short SS_NONE = 0;
+
+ /**
+ * superscript
+ */
+
+ public final static short SS_SUPER = 1;
+
+ /**
+ * subscript
+ */
+
+ public final static short SS_SUB = 2;
+
+ /**
+ * not underlined
+ */
+
+ public final static byte U_NONE = 0;
+
+ /**
+ * single (normal) underline
+ */
+
+ public final static byte U_SINGLE = 1;
+
+ /**
+ * double underlined
+ */
+
+ public final static byte U_DOUBLE = 2;
+
+ /**
+ * accounting style single underline
+ */
+
+ public final static byte U_SINGLE_ACCOUNTING = 0x21;
+
+ /**
+ * accounting style double underline
+ */
+
+ public final static byte U_DOUBLE_ACCOUNTING = 0x22;
+
+ /**
+ * ANSI character set
+ */
+ public final static byte ANSI_CHARSET = 0;
+
+ /**
+ * Default character set.
+ */
+ public final static byte DEFAULT_CHARSET = 1;
+
+ /**
+ * Symbol character set
+ */
+ public final static byte SYMBOL_CHARSET = 2;
+
+
+}