Fix small typo, closes PR #97 on Github.

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1822937 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Dominik Stadler 2018-02-02 10:35:48 +00:00
parent 04766b92fc
commit 5030a1273e
1 changed files with 7 additions and 7 deletions

View File

@ -118,7 +118,7 @@ public class XSSFCellStyle implements CellStyle {
*/
public void verifyBelongsToStylesSource(StylesTable src) {
if(this._stylesSource != src) {
throw new IllegalArgumentException("This Style does not belong to the supplied Workbook Stlyes Source. Are you trying to assign a style from one workbook to the cell of a differnt workbook?");
throw new IllegalArgumentException("This Style does not belong to the supplied Workbook Styles Source. Are you trying to assign a style from one workbook to the cell of a differnt workbook?");
}
}
@ -210,7 +210,7 @@ public class XSSFCellStyle implements CellStyle {
_cellXf.setFillId(idx);
_cellXf.setApplyFill(true);
}
private void addBorder(CTBorder border) {
int idx = _stylesSource.putBorder(new XSSFCellBorder(border, _theme,_stylesSource.getIndexedColors()));
@ -559,7 +559,7 @@ public class XSSFCellStyle implements CellStyle {
public boolean getQuotePrefixed() {
return _cellXf.getQuotePrefix();
}
/**
* Get the color to use for the right border
*
@ -922,7 +922,7 @@ public class XSSFCellStyle implements CellStyle {
}
return ct;
}
/**
* Set reading order for the cell
*
@ -1064,7 +1064,7 @@ public class XSSFCellStyle implements CellStyle {
}
_cellXf.getProtection().setLocked(locked);
}
/**
* Turn on or off "Quote Prefix" or "123 Prefix" for the style,
* which is used to tell Excel that the thing which looks like
@ -1119,8 +1119,8 @@ public class XSSFCellStyle implements CellStyle {
* <code>[degrees below horizon] = 90 - textRotation.</code>
* </p>
*
* Note: HSSF uses values from -90 to 90 degrees, whereas XSSF
* uses values from 0 to 180 degrees. The implementations of this method will map between these two value-ranges
* Note: HSSF uses values from -90 to 90 degrees, whereas XSSF
* uses values from 0 to 180 degrees. The implementations of this method will map between these two value-ranges
* accordingly, however the corresponding getter is returning values in the range mandated by the current type
* of Excel file-format that this CellStyle is applied to.
*