]> source.dussan.org Git - poi.git/commit
Enhanced SViewer to support most border types, cell formats, and conditional formatti...
authorYegor Kozlov <yegor@apache.org>
Mon, 10 May 2010 16:11:50 +0000 (16:11 +0000)
committerYegor Kozlov <yegor@apache.org>
Mon, 10 May 2010 16:11:50 +0000 (16:11 +0000)
commit90170942312c0262025f7f2af598faa642533259
treefad759213584c02f1517c7461d4d73fa8da01c9e
parenta1208452206129a9b23921b822688e57be3cad75
Enhanced SViewer to support most border types, cell formats, and conditional formatting. Added ToHtml example that converts a spreadsheet into HTML, See Bugzilla #49066

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@942809 13f79535-47bb-0310-9956-ffa450edef68
57 files changed:
build.xml
src/contrib/src/org/apache/poi/hssf/contrib/view/SVBorder.java [deleted file]
src/contrib/src/org/apache/poi/hssf/contrib/view/SVFractionalFormat.java [deleted file]
src/contrib/src/org/apache/poi/hssf/contrib/view/SVRowHeader.java [deleted file]
src/contrib/src/org/apache/poi/hssf/contrib/view/SVTableCellEditor.java [deleted file]
src/contrib/src/org/apache/poi/hssf/contrib/view/SVTableCellRenderer.java [deleted file]
src/contrib/src/org/apache/poi/hssf/contrib/view/SVTableModel.java [deleted file]
src/contrib/src/org/apache/poi/hssf/contrib/view/SVTableUtils.java [deleted file]
src/contrib/src/org/apache/poi/hssf/contrib/view/SViewer.java [deleted file]
src/contrib/src/org/apache/poi/hssf/contrib/view/SViewerPanel.java [deleted file]
src/documentation/content/xdocs/status.xml
src/examples/src/org/apache/poi/hssf/view/SVBorder.java [new file with mode: 0644]
src/examples/src/org/apache/poi/hssf/view/SVFractionalFormat.java [new file with mode: 0644]
src/examples/src/org/apache/poi/hssf/view/SVRowHeader.java [new file with mode: 0644]
src/examples/src/org/apache/poi/hssf/view/SVSheetTable.java [new file with mode: 0644]
src/examples/src/org/apache/poi/hssf/view/SVTableCellEditor.java [new file with mode: 0644]
src/examples/src/org/apache/poi/hssf/view/SVTableCellRenderer.java [new file with mode: 0644]
src/examples/src/org/apache/poi/hssf/view/SVTableModel.java [new file with mode: 0644]
src/examples/src/org/apache/poi/hssf/view/SVTableUtils.java [new file with mode: 0644]
src/examples/src/org/apache/poi/hssf/view/SViewer.java [new file with mode: 0644]
src/examples/src/org/apache/poi/hssf/view/SViewerPanel.java [new file with mode: 0644]
src/examples/src/org/apache/poi/hssf/view/brush/BasicBrush.java [new file with mode: 0644]
src/examples/src/org/apache/poi/hssf/view/brush/Brush.java [new file with mode: 0644]
src/examples/src/org/apache/poi/hssf/view/brush/DoubleStroke.java [new file with mode: 0644]
src/examples/src/org/apache/poi/hssf/view/brush/PendingPaintings.java [new file with mode: 0644]
src/examples/src/org/apache/poi/hssf/view/brush/package.html [new file with mode: 0644]
src/examples/src/org/apache/poi/ss/examples/html/HSSFHtmlHelper.java [new file with mode: 0644]
src/examples/src/org/apache/poi/ss/examples/html/HtmlHelper.java [new file with mode: 0644]
src/examples/src/org/apache/poi/ss/examples/html/ToHtml.java [new file with mode: 0644]
src/examples/src/org/apache/poi/ss/examples/html/XSSFHtmlHelper.java [new file with mode: 0644]
src/examples/src/org/apache/poi/ss/examples/html/excelStyle.css [new file with mode: 0644]
src/examples/src/org/apache/poi/ss/examples/html/package.html [new file with mode: 0644]
src/java/org/apache/poi/ss/format/CellDateFormatter.java [new file with mode: 0644]
src/java/org/apache/poi/ss/format/CellElapsedFormatter.java [new file with mode: 0644]
src/java/org/apache/poi/ss/format/CellFormat.java [new file with mode: 0644]
src/java/org/apache/poi/ss/format/CellFormatCondition.java [new file with mode: 0644]
src/java/org/apache/poi/ss/format/CellFormatPart.java [new file with mode: 0644]
src/java/org/apache/poi/ss/format/CellFormatResult.java [new file with mode: 0644]
src/java/org/apache/poi/ss/format/CellFormatType.java [new file with mode: 0644]
src/java/org/apache/poi/ss/format/CellFormatter.java [new file with mode: 0644]
src/java/org/apache/poi/ss/format/CellGeneralFormatter.java [new file with mode: 0644]
src/java/org/apache/poi/ss/format/CellNumberFormatter.java [new file with mode: 0644]
src/java/org/apache/poi/ss/format/CellTextFormatter.java [new file with mode: 0644]
src/java/org/apache/poi/ss/format/package.html [new file with mode: 0644]
src/ooxml/testcases/org/apache/poi/ss/format/TestCellFormatPart.java [new file with mode: 0644]
src/testcases/org/apache/poi/ss/format/CellFormatTestBase.java [new file with mode: 0644]
src/testcases/org/apache/poi/ss/format/TestCellFormat.java [new file with mode: 0644]
src/testcases/org/apache/poi/ss/format/TestCellFormatCondition.java [new file with mode: 0644]
test-data/spreadsheet/DateFormatTests.xlsx [new file with mode: 0644]
test-data/spreadsheet/ElapsedFormatTests.xlsx [new file with mode: 0644]
test-data/spreadsheet/FormatChoiceTests.xls [new file with mode: 0644]
test-data/spreadsheet/FormatChoiceTests.xlsx [new file with mode: 0644]
test-data/spreadsheet/FormatConditionTests.xlsx [new file with mode: 0644]
test-data/spreadsheet/GeneralFormatTests.xlsx [new file with mode: 0644]
test-data/spreadsheet/NumberFormatApproxTests.xlsx [new file with mode: 0644]
test-data/spreadsheet/NumberFormatTests.xlsx [new file with mode: 0644]
test-data/spreadsheet/TextFormatTests.xlsx [new file with mode: 0644]