diff options
author | Josh Micich <josh@apache.org> | 2009-06-04 00:06:31 +0000 |
---|---|---|
committer | Josh Micich <josh@apache.org> | 2009-06-04 00:06:31 +0000 |
commit | 1c5653ec5d71641fe51cf3633c3986837fd5942d (patch) | |
tree | f48cff9ac253618a86e82bee0f89605eb8d80796 /src/java/org/apache/poi/ss/usermodel/Cell.java | |
parent | 8d91fa9c11741ef561af064ba13b9647486db5a9 (diff) | |
download | poi-1c5653ec5d71641fe51cf3633c3986837fd5942d.tar.gz poi-1c5653ec5d71641fe51cf3633c3986837fd5942d.zip |
rolling back r781622
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@781623 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/poi/ss/usermodel/Cell.java')
-rw-r--r-- | src/java/org/apache/poi/ss/usermodel/Cell.java | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/src/java/org/apache/poi/ss/usermodel/Cell.java b/src/java/org/apache/poi/ss/usermodel/Cell.java index 0a76061e45..aa1e8c3955 100644 --- a/src/java/org/apache/poi/ss/usermodel/Cell.java +++ b/src/java/org/apache/poi/ss/usermodel/Cell.java @@ -149,19 +149,11 @@ public interface Cell { void setCellValue(double value); /** - * Converts the supplied date to its equivalent Excel numeric value and sets - * that into the cell. - * <p/> - * <b>Note</b> - There is actually no 'DATE' cell type in Excel. In many - * cases (when entering date values), Excel automatically adjusts the - * <i>cell style</i> to some date format, creating the illusion that the cell - * data type is now something besides {@link Cell#CELL_TYPE_NUMERIC}. POI - * does not attempt to replicate this behaviour. To make a numeric cell - * display as a date, use {@link #setCellStyle(CellStyle)} etc. - * - * @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. + * 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 + * will change the cell to a boolean cell and set its value. */ void setCellValue(Date value); |