diff options
author | PJ Fanning <fanningpj@apache.org> | 2021-11-26 13:08:31 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2021-11-26 13:08:31 +0000 |
commit | 29b3ad25df2cf324d16e73c0ab8d76f1739f273b (patch) | |
tree | 20a59190a3e41b80e3bec6e58d5ff9ef1719732d | |
parent | d4c649ae58d0115079091bbdc77dde8b95f15ca7 (diff) | |
download | poi-29b3ad25df2cf324d16e73c0ab8d76f1739f273b.tar.gz poi-29b3ad25df2cf324d16e73c0ab8d76f1739f273b.zip |
javadoc
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1895351 13f79535-47bb-0310-9956-ffa450edef68
4 files changed, 34 insertions, 34 deletions
diff --git a/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFCell.java b/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFCell.java index 6f44c8e524..8659227b17 100644 --- a/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFCell.java +++ b/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFCell.java @@ -446,8 +446,8 @@ public class SXSSFCell extends CellBase { /** * Set a boolean value for the cell * - * @param value the boolean value to set this cell to. For formulas we'll set the - * precalculated value, for booleans we'll set its value. For other types we + * @param value the boolean value to set this cell to. For formulas, we'll set the + * precalculated value, for booleans we'll set its value. For other types, we * will change the cell to a boolean cell and set its value. */ @Override @@ -463,9 +463,9 @@ public class SXSSFCell extends CellBase { /** * Set a error value for the cell * - * @param value the error value to set this cell to. For formulas we'll set the + * @param value the error value to set this cell to. For formulas, we'll set the * precalculated value , for errors we'll set - * its value. For other types we will change the cell to an error + * its value. For other types, we will change the cell to an error * cell and set its value. * @see org.apache.poi.ss.usermodel.FormulaError */ diff --git a/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFCell.java b/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFCell.java index d7ed668d1f..de3a7a4a3d 100644 --- a/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFCell.java +++ b/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFCell.java @@ -212,8 +212,8 @@ public final class XSSFCell extends CellBase { /** * Set a boolean value for the cell * - * @param value the boolean value to set this cell to. For formulas we'll set the - * precalculated value, for booleans we'll set its value. For other types we + * @param value the boolean value to set this cell to. For formulas, we'll set the + * precalculated value, for booleans we'll set its value. For other types, we * will change the cell to a boolean cell and set its value. */ @Override @@ -766,9 +766,9 @@ public final class XSSFCell extends CellBase { /** * Set a error value for the cell * - * @param errorCode the error value to set this cell to. For formulas we'll set the + * @param errorCode the error value to set this cell to. For formulas, we'll set the * precalculated value , for errors we'll set - * its value. For other types we will change the cell to an error + * its value. For other types, we will change the cell to an error * cell and set its value. * @see FormulaError */ @@ -781,9 +781,9 @@ public final class XSSFCell extends CellBase { /** * Set a error value for the cell * - * @param error the error value to set this cell to. For formulas we'll set the + * @param error the error value to set this cell to. For formulas, we'll set the * precalculated value , for errors we'll set - * its value. For other types we will change the cell to an error + * its value. For other types, we will change the cell to an error * cell and set its value. */ public void setCellErrorValue(FormulaError error) { diff --git a/poi/src/main/java/org/apache/poi/hssf/usermodel/HSSFCell.java b/poi/src/main/java/org/apache/poi/hssf/usermodel/HSSFCell.java index 4ba12a4571..f16a81202b 100644 --- a/poi/src/main/java/org/apache/poi/hssf/usermodel/HSSFCell.java +++ b/poi/src/main/java/org/apache/poi/hssf/usermodel/HSSFCell.java @@ -748,8 +748,8 @@ public class HSSFCell extends CellBase { /** * set a boolean value for the cell * - * @param value the boolean value to set this cell to. For formulas we'll set the - * precalculated value, for booleans we'll set its value. For other types we + * @param value the boolean value to set this cell to. For formulas, we'll set the + * precalculated value, for booleans we'll set its value. For other types, we * will change the cell to a boolean cell and set its value. */ @Override @@ -775,9 +775,9 @@ public class HSSFCell extends CellBase { /** * set a error value for the cell * - * @param errorCode the error value to set this cell to. For formulas we'll set the + * @param errorCode the error value to set this cell to. For formulas, we'll set the * precalculated value , for errors we'll set - * its value. For other types we will change the cell to an error + * its value. For other types, we will change the cell to an error * cell and set its value. * For error code byte, see {@link FormulaError}. * @deprecated 3.15 beta 2. Use {@link #setCellErrorValue(FormulaError)} instead. @@ -791,9 +791,9 @@ public class HSSFCell extends CellBase { /** * set a error value for the cell * - * @param error the error value to set this cell to. For formulas we'll set the + * @param error the error value to set this cell to. For formulas, we'll set the * precalculated value , for errors we'll set - * its value. For other types we will change the cell to an error + * its value. For other types, we will change the cell to an error * cell and set its value. */ @SuppressWarnings("fallthrough") diff --git a/poi/src/main/java/org/apache/poi/ss/usermodel/Cell.java b/poi/src/main/java/org/apache/poi/ss/usermodel/Cell.java index 5e3918f3d3..fb1e11d21a 100644 --- a/poi/src/main/java/org/apache/poi/ss/usermodel/Cell.java +++ b/poi/src/main/java/org/apache/poi/ss/usermodel/Cell.java @@ -124,8 +124,8 @@ public interface Cell { /** * Set a numeric value for the cell. * - * @param value the numeric value to set this cell to. For formulas we'll set the - * precalculated value, for numerics we'll set its value. For other types we + * @param value the numeric value to set this cell to. For formulas, we'll set the + * precalculated value, for numerics we'll set its value. For other types, we * will change the cell to a numeric cell and set its value. */ void setCellValue(double value); @@ -141,8 +141,8 @@ public interface Cell { * does not attempt to replicate this behaviour. To make a numeric cell * display as a date, use {@link #setCellStyle(CellStyle)} etc.</p> * - * @param value the numeric value to set this cell to. For formulas we'll set the - * precalculated value, for numerics we'll set its value. For other types we + * @param value the numeric value to set this cell to. For formulas, we'll set the + * precalculated value, for numerics we'll set its value. For other types, we * will change the cell to a numerics cell and set its value. */ void setCellValue(Date value); @@ -158,8 +158,8 @@ public interface Cell { * does not attempt to replicate this behaviour. To make a numeric cell * display as a date, use {@link #setCellStyle(CellStyle)} etc.</p> * - * @param value the numeric value to set this cell to. For formulas we'll set the - * precalculated value, for numerics we'll set its value. For other types we + * @param value the numeric value to set this cell to. For formulas, we'll set the + * precalculated value, for numerics we'll set its value. For other types, we * will change the cell to a numerics cell and set its value. */ void setCellValue(LocalDateTime value); @@ -175,8 +175,8 @@ public interface Cell { * does not attempt to replicate this behaviour. To make a numeric cell * display as a date, use {@link #setCellStyle(CellStyle)} etc.</p> * - * @param value the numeric value to set this cell to. For formulas we'll set the - * precalculated value, for numerics we'll set its value. For other types we + * @param value the numeric value to set this cell to. For formulas, we'll set the + * precalculated value, for numerics we'll set its value. For other types, we * will change the cell to a numerics cell and set its value. */ default void setCellValue(LocalDate value) { @@ -195,8 +195,8 @@ public interface Cell { * automatically shift the times to the default timezone. * </p> * - * @param value the date value to set this cell to. For formulas we'll set the - * precalculated value, for numerics we'll set its value. For othertypes we + * @param value the date value to set this cell to. For formulas, we'll set the + * precalculated value, for numerics we'll set its value. For other types, we * will change the cell to a numeric cell and set its value. */ void setCellValue(Calendar value); @@ -204,8 +204,8 @@ public interface Cell { /** * Set a rich string value for the cell. * - * @param value value to set the cell to. For formulas we'll set the formula - * string, for String cells we'll set its value. For other types we will + * @param value value to set the cell to. For formulas, we'll set the formula + * string, for String cells we'll set its value. For other types, we will * change the cell to a string cell and set its value. * If value is null then we will change the cell to a Blank cell. */ @@ -214,8 +214,8 @@ public interface Cell { /** * Set a string value for the cell. * - * @param value value to set the cell to. For formulas we'll set the formula - * string, for String cells we'll set its value. For other types we will + * @param value value to set the cell to. For formulas, we'll set the formula + * string, for String cells we'll set its value. For other types, we will * change the cell to a string cell and set its value. * If value is null then we will change the cell to a Blank cell. */ @@ -319,8 +319,8 @@ public interface Cell { /** * Set a boolean value for the cell * - * @param value the boolean value to set this cell to. For formulas we'll set the - * precalculated value, for booleans we'll set its value. For other types we + * @param value the boolean value to set this cell to. For formulas, we'll set the + * precalculated value, for booleans we'll set its value. For other types, we * will change the cell to a boolean cell and set its value. */ void setCellValue(boolean value); @@ -328,9 +328,9 @@ public interface Cell { /** * Set a error value for the cell * - * @param value the error value to set this cell to. For formulas we'll set the + * @param value the error value to set this cell to. For formulas, we'll set the * precalculated value , for errors we'll set - * its value. For other types we will change the cell to an error + * its value. For other types, we will change the cell to an error * cell and set its value. * @see FormulaError */ |