diff options
author | Nick Burch <nick@apache.org> | 2015-07-13 20:11:47 +0000 |
---|---|---|
committer | Nick Burch <nick@apache.org> | 2015-07-13 20:11:47 +0000 |
commit | 02b090e41638c861a0a1f47f78a08d68232c8cef (patch) | |
tree | 9ade8c01f9fe257d51978b94bfde5e23451a943a /src/ooxml | |
parent | 7d58f2297b3e6eca8d3cb342b1b5aa484f3deadb (diff) | |
download | poi-02b090e41638c861a0a1f47f78a08d68232c8cef.tar.gz poi-02b090e41638c861a0a1f47f78a08d68232c8cef.zip |
Move some test checks to using ConditionType instead of raw bytes
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1690808 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/ooxml')
-rw-r--r-- | src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFConditionalFormattingRule.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFConditionalFormattingRule.java b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFConditionalFormattingRule.java index 0b4a05d096..92b91ceeb5 100644 --- a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFConditionalFormattingRule.java +++ b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFConditionalFormattingRule.java @@ -34,7 +34,7 @@ import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTFill; import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTBorder;
/**
- * @author Yegor Kozlov
+ * XSSF suport for Conditional Formatting rules
*/
public class XSSFConditionalFormattingRule implements ConditionalFormattingRule {
private final CTCfRule _cfRule;
@@ -63,6 +63,8 @@ public class XSSFConditionalFormattingRule implements ConditionalFormattingRule typeLookup.put(STCfType.TIME_PERIOD, ConditionType.FILTER);
typeLookup.put(STCfType.ABOVE_AVERAGE, ConditionType.FILTER);
}
+
+ // TODO Support types beyond CELL_VALUE_IS and FORMULA
/*package*/ XSSFConditionalFormattingRule(XSSFSheet sh){
_cfRule = CTCfRule.Factory.newInstance();
|