diff options
author | Nick Burch <nick@apache.org> | 2012-02-20 11:29:58 +0000 |
---|---|---|
committer | Nick Burch <nick@apache.org> | 2012-02-20 11:29:58 +0000 |
commit | f879c880d41087175002d426174d5838e8baec1f (patch) | |
tree | b5fa079ed48f37c0b47016bc5e32d4e2d8313b57 /src/java/org/apache/poi/ss/format | |
parent | 1209d2fb8833bcf165bccc963f26897d2562c530 (diff) | |
download | poi-f879c880d41087175002d426174d5838e8baec1f.tar.gz poi-f879c880d41087175002d426174d5838e8baec1f.zip |
Add TODO for merging CellFormat and DataFormatter
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1291206 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/poi/ss/format')
-rw-r--r-- | src/java/org/apache/poi/ss/format/CellFormat.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/java/org/apache/poi/ss/format/CellFormat.java b/src/java/org/apache/poi/ss/format/CellFormat.java index 4f9ad1aaa6..2122c9f6fb 100644 --- a/src/java/org/apache/poi/ss/format/CellFormat.java +++ b/src/java/org/apache/poi/ss/format/CellFormat.java @@ -18,6 +18,7 @@ package org.apache.poi.ss.format; import org.apache.poi.ss.usermodel.Cell; +import org.apache.poi.ss.usermodel.DataFormatter; import javax.swing.*; import java.util.ArrayList; @@ -61,6 +62,9 @@ import java.util.regex.Pattern; * In addition to these, there is a general format that is used when no format * is specified. This formatting is presented by the {@link #GENERAL_FORMAT} * object. + * + * TODO Merge this with {@link DataFormatter} so we only have one set of + * code for formatting numbers. * * @author Ken Arnold, Industrious Media LLC */ |