Javadoc tweak

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1697462 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Nick Burch 2015-08-24 17:55:57 +00:00
parent 639b847d6e
commit d662021baf

View File

@ -615,7 +615,7 @@ public class XSSFCellStyle implements CellStyle {
/** /**
* Get the index within the StylesTable (sequence within the collection of CTXf elements) * Get the index within the StylesTable (sequence within the collection of CTXf elements)
* *
* @return unique index number of the underlying record this style represents * @return unique index number of the underlying record this style represents, as a short (may wrap)
*/ */
@Override @Override
public short getIndex() { public short getIndex() {
@ -627,7 +627,7 @@ public class XSSFCellStyle implements CellStyle {
* the main getIndex() and others would return int, not short, but that would affect some * the main getIndex() and others would return int, not short, but that would affect some
* public APIs * public APIs
* *
* @return * @return unique index number of the underlying record this style represents, as an int (always positive)
*/ */
protected int getUIndex() { protected int getUIndex() {
return this._cellXfId; return this._cellXfId;