diff options
author | Yegor Kozlov <yegor@apache.org> | 2011-06-09 10:38:31 +0000 |
---|---|---|
committer | Yegor Kozlov <yegor@apache.org> | 2011-06-09 10:38:31 +0000 |
commit | 84de0558db18a86cd8f58d5694e7edbfdc4dde40 (patch) | |
tree | 0f596322e6aa14239a5f51bf3db3767363516c75 /src/examples | |
parent | 21405bf0e36689ae832a16df672863a8ed4661ed (diff) | |
download | poi-84de0558db18a86cd8f58d5694e7edbfdc4dde40.tar.gz poi-84de0558db18a86cd8f58d5694e7edbfdc4dde40.zip |
continue SXSSF docs updates and polishing
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1133782 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/examples')
-rw-r--r-- | src/examples/src/org/apache/poi/xssf/usermodel/examples/BigGridDemo.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/examples/src/org/apache/poi/xssf/usermodel/examples/BigGridDemo.java b/src/examples/src/org/apache/poi/xssf/usermodel/examples/BigGridDemo.java index 91092232a9..00c5342746 100644 --- a/src/examples/src/org/apache/poi/xssf/usermodel/examples/BigGridDemo.java +++ b/src/examples/src/org/apache/poi/xssf/usermodel/examples/BigGridDemo.java @@ -37,7 +37,7 @@ import org.apache.poi.xssf.usermodel.*; * 3. Substitute the sheet in the template with the generated data * * <p> - * Since 3.8-beta3 POI provides a low-memory footprint SXSSF API which implementing the "BigGridDemo" strategy. + * Since 3.8-beta3 POI provides a low-memory footprint SXSSF API which implementing the "BigGridDemo" strategy. * XSSF is an API-compatible streaming extension of XSSF to be used when * very large spreadsheets have to be produced, and heap space is limited. * SXSSF achieves its low memory footprint by limiting access to the rows that @@ -45,9 +45,11 @@ import org.apache.poi.xssf.usermodel.*; * document. Older rows that are no longer in the window become inaccessible, * as they are written to the disk. * </p> + * See <a "http://poi.apache.org/spreadsheet/how-to.html#sxssf"> + * http://poi.apache.org/spreadsheet/how-to.html#sxssf</a>. + * * @author Yegor Kozlov - * @see <a "http://poi.apache.org/spreadsheet/how-to.html#sxssf">http://poi.apache.org/spreadsheet/how-to.html#sxssf</a> */ public class BigGridDemo { private static final String XML_ENCODING = "UTF-8"; |