]> source.dussan.org Git - poi.git/commitdiff
javadoc
authorPJ Fanning <fanningpj@apache.org>
Thu, 7 Oct 2021 13:46:09 +0000 (13:46 +0000)
committerPJ Fanning <fanningpj@apache.org>
Thu, 7 Oct 2021 13:46:09 +0000 (13:46 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1893989 13f79535-47bb-0310-9956-ffa450edef68

poi/src/main/java/org/apache/poi/ss/usermodel/CellCopyPolicy.java
poi/src/main/java/org/apache/poi/ss/util/CellUtil.java

index 8aea65ad23f0ffc89d7ed49c0fb661fd6cf5deaa..722d697f3acab671fcf5eb231df9e2a2019862bd 100644 (file)
@@ -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
+     * <p>
      * For example:
+     * <p>
      * 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
+     * <p>
+     * For example:
+     * <p>
+     * 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) {
index ea54ee8ff21c506ca04802253f4a83409bcef858..283d7d4de7c4c8b757f142e2812469b1727dd374 100644 (file)
@@ -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 <code>copyRowFrom</code> method on <code>XSSFRow</code>
+     * and <code>HSSFRow</code> 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