]> source.dussan.org Git - poi.git/commit
support for conditional formatting in XSSF including docs and examples
authorYegor Kozlov <yegor@apache.org>
Fri, 29 Jul 2011 04:47:25 +0000 (04:47 +0000)
committerYegor Kozlov <yegor@apache.org>
Fri, 29 Jul 2011 04:47:25 +0000 (04:47 +0000)
commite97caa9c1bce94a0d15fa4822e1ee996009802ba
treed810fdbdf2713611c816d3f3d817a569612bf5a7
parenta7306f6d4ffe1f54f1a9ef383c33e94ebb5c5625
support for conditional formatting in XSSF including docs and examples

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1152099 13f79535-47bb-0310-9956-ffa450edef68
33 files changed:
src/documentation/content/xdocs/spreadsheet/quick-guide.xml
src/documentation/content/xdocs/status.xml
src/examples/src/org/apache/poi/ss/examples/ConditionalFormats.java [new file with mode: 0755]
src/java/org/apache/poi/hssf/usermodel/HSSFBorderFormatting.java
src/java/org/apache/poi/hssf/usermodel/HSSFConditionalFormatting.java
src/java/org/apache/poi/hssf/usermodel/HSSFConditionalFormattingRule.java
src/java/org/apache/poi/hssf/usermodel/HSSFFontFormatting.java
src/java/org/apache/poi/hssf/usermodel/HSSFPatternFormatting.java
src/java/org/apache/poi/hssf/usermodel/HSSFSheetConditionalFormatting.java
src/java/org/apache/poi/ss/usermodel/BorderFormatting.java [new file with mode: 0644]
src/java/org/apache/poi/ss/usermodel/ComparisonOperator.java [new file with mode: 0644]
src/java/org/apache/poi/ss/usermodel/ConditionalFormatting.java [new file with mode: 0644]
src/java/org/apache/poi/ss/usermodel/ConditionalFormattingRule.java [new file with mode: 0644]
src/java/org/apache/poi/ss/usermodel/FontFormatting.java [new file with mode: 0644]
src/java/org/apache/poi/ss/usermodel/IndexedColors.java
src/java/org/apache/poi/ss/usermodel/PatternFormatting.java [new file with mode: 0644]
src/java/org/apache/poi/ss/usermodel/Sheet.java
src/java/org/apache/poi/ss/usermodel/SheetConditionalFormatting.java [new file with mode: 0644]
src/ooxml/java/org/apache/poi/xssf/model/StylesTable.java
src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFSheet.java
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFBorderFormatting.java [new file with mode: 0644]
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFConditionalFormatting.java [new file with mode: 0644]
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFConditionalFormattingRule.java [new file with mode: 0644]
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFFontFormatting.java [new file with mode: 0644]
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFPatternFormatting.java [new file with mode: 0644]
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheet.java
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheetConditionalFormatting.java [new file with mode: 0644]
src/ooxml/java/org/apache/poi/xssf/usermodel/helpers/XSSFRowShifter.java
src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFConditionalFormatting.java [new file with mode: 0644]
src/testcases/org/apache/poi/hssf/usermodel/TestHSSFConditionalFormatting.java
src/testcases/org/apache/poi/ss/usermodel/BaseTestConditionalFormatting.java [new file with mode: 0644]
test-data/spreadsheet/WithConditionalFormatting.xls [new file with mode: 0755]
test-data/spreadsheet/WithConditionalFormatting.xlsx [new file with mode: 0755]