aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/poi/hssf/usermodel
diff options
context:
space:
mode:
Diffstat (limited to 'src/java/org/apache/poi/hssf/usermodel')
-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
6 files changed, 19 insertions, 111 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);
}
/**