aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNick Burch <nick@apache.org>2015-11-04 18:25:35 +0000
committerNick Burch <nick@apache.org>2015-11-04 18:25:35 +0000
commit415c4b95c8f4b546c7f7b2a118a99f588b510fb0 (patch)
tree79d4f19ddb179e829ae4fc39d4ca5aac4791e537 /src
parentd1ea6125fa915719d4515837d0f54c46bb7cdad9 (diff)
downloadpoi-415c4b95c8f4b546c7f7b2a118a99f588b510fb0.tar.gz
poi-415c4b95c8f4b546c7f7b2a118a99f588b510fb0.zip
Javadoc fixes
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1712606 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r--src/java/org/apache/poi/ss/formula/FormulaShifter.java2
-rw-r--r--src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheet.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/java/org/apache/poi/ss/formula/FormulaShifter.java b/src/java/org/apache/poi/ss/formula/FormulaShifter.java
index e26cc2c85d..a74cc51e49 100644
--- a/src/java/org/apache/poi/ss/formula/FormulaShifter.java
+++ b/src/java/org/apache/poi/ss/formula/FormulaShifter.java
@@ -457,7 +457,7 @@ public final class FormulaShifter {
* Returns <code>null</code> or {@link #RefErrorPtg} if no change was made
*
* @param aptg
- * @return
+ * @return The Ptg reference if the cell would move due to copy, otherwise null
*/
private Ptg rowCopyRefPtg(RefPtgBase rptg) {
final int refRow = rptg.getRow();
diff --git a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheet.java b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheet.java
index 56cd1e7499..610ec2ecd6 100644
--- a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheet.java
+++ b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheet.java
@@ -1291,7 +1291,7 @@ public class XSSFSheet extends POIXMLDocumentPart implements Sheet {
* @param startRow the first row number in this sheet to return
* @param endRow the last row number in this sheet to return
* @param createRowIfMissing
- * @return
+ * @return All rows between startRow and endRow, inclusive
* @throws IllegalArgumentException if startRowNum and endRowNum are not in ascending order
*/
private List<XSSFRow> getRows(int startRowNum, int endRowNum, boolean createRowIfMissing) {