diff --git a/poi/src/main/java/org/apache/poi/ss/usermodel/CellCopyPolicy.java b/poi/src/main/java/org/apache/poi/ss/usermodel/CellCopyPolicy.java index 8aea65ad23..722d697f3a 100644 --- a/poi/src/main/java/org/apache/poi/ss/usermodel/CellCopyPolicy.java +++ b/poi/src/main/java/org/apache/poi/ss/usermodel/CellCopyPolicy.java @@ -255,17 +255,25 @@ public class CellCopyPolicy { } /** - * If condenseRows is true, a discontinuities in srcRows will be removed when copied to destination + * If condenseRows is true, a discontinuity in srcRows will be removed when copied to destination + *
* For example: + *
* Sheet.copyRows({Row(1), Row(2), Row(5)}, 11, policy) results in rows 1, 2, and 5 * being copied to rows 11, 12, and 13 if condenseRows is True, or rows 11, 11, 15 if condenseRows is false - * @return the condenseRows + * @return the condenseRows setting */ public boolean isCondenseRows() { return condenseRows; } /** + * If condenseRows is true, a discontinuity in srcRows will be removed when copied to destination + *
+ * For example: + *
+ * Sheet.copyRows({Row(1), Row(2), Row(5)}, 11, policy) results in rows 1, 2, and 5
+ * being copied to rows 11, 12, and 13 if condenseRows is True, or rows 11, 11, 15 if condenseRows is false
* @param condenseRows the condenseRows to set
*/
public void setCondenseRows(boolean condenseRows) {
diff --git a/poi/src/main/java/org/apache/poi/ss/util/CellUtil.java b/poi/src/main/java/org/apache/poi/ss/util/CellUtil.java
index ea54ee8ff2..283d7d4de7 100644
--- a/poi/src/main/java/org/apache/poi/ss/util/CellUtil.java
+++ b/poi/src/main/java/org/apache/poi/ss/util/CellUtil.java
@@ -186,7 +186,8 @@ public final class CellUtil {
* Note that if you are copying from a source cell from a different type of then you may need to disable style copying
* in the {@link CellCopyPolicy} (HSSF styles are not compatible with XSSF styles, for instance).
*
- * This does not shift references in formulas.
+ * This does not shift references in formulas. The copyRowFrom method on XSSFRow
+ * and HSSFRow does attempt to shift references in formulas.
*
* @param srcCell The cell to take value, formula and style from
* @param destCell The cell to copy to