From: Nick Burch Date: Mon, 24 Aug 2015 17:55:57 +0000 (+0000) Subject: Javadoc tweak X-Git-Tag: REL_3_13_FINAL~88 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=f46ad8fd132493b06531e35b254f7b9de2eae7ec;p=poi.git Javadoc tweak git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1697462 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCellStyle.java b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCellStyle.java index b3587fc4a0..7bb2fd6db4 100644 --- a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCellStyle.java +++ b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCellStyle.java @@ -615,7 +615,7 @@ public class XSSFCellStyle implements CellStyle { /** * 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 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 * public APIs * - * @return + * @return unique index number of the underlying record this style represents, as an int (always positive) */ protected int getUIndex() { return this._cellXfId;