]> source.dussan.org Git - poi.git/commitdiff
Fix a few little bits of documentation xml
authorNick Burch <nick@apache.org>
Tue, 8 Jan 2008 11:28:07 +0000 (11:28 +0000)
committerNick Burch <nick@apache.org>
Tue, 8 Jan 2008 11:28:07 +0000 (11:28 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@609936 13f79535-47bb-0310-9956-ffa450edef68

src/documentation/content/xdocs/changes.xml
src/documentation/content/xdocs/hssf/quick-guide.xml

index 61006908f08f863b85a8bd2b41570c16bdd0babd..ccf962dae8266792213dc5273edea54cdebd5ca5 100644 (file)
     </devs>
 
                <!-- Don't forget to update status.xml too! -->
-        <release versionse version="3.0.2-FINAL" date="2008-??-??">
+        <release version="3.0.2-FINAL" date="2008-??-??">
             <action dev="POI-DEVELOPERS" type="fix">44167 - Fix for non-contiguous named ranges</action>
             <action dev="POI-DEVELOPERS" type="fix">44070 - Fix for shifting comments when shifting rows</action>
         </release>
         <release version="3.0.2-BETA2" date="2008-01-12">
-="3.0.2-BETA2" date="2008-01-12">
             <action dev="POI-DEVELOPERS" type="add">Support for tables in HSLF</action>
             <action dev="POI-DEVELOPERS" type="fix">43781 - Fix for extracting text from TextBoxes HSLF in</action>
             <action dev="POI-DEVELOPERS" type="fix">Improve JavaDocs relating to hssf font and fill colourings</action>
@@ -50,7 +49,6 @@
             <action dev="POI-DEVELOPERS" type="add">41064 - [PATCH] Support for String continue records</action>
             <action dev="POI-DEVELOPERS" type="add">27511 - [PATCH] Support for data validation, via DVRecord and DVALRecord</action>
         </release>
-
         <release version="3.0.2-BETA1" date="2007-12-04">
             <action dev="POI-DEVELOPERS" type="fix">43877 and 39512 - Fix for handling mixed OBJ and CONTINUE records.</action>
             <action dev="POI-DEVELOPERS" type="fix">43807 - Throw an IllegalArgumentException if asked to create a merged region with invalid columns or rows, rather than writing out a corrupt file</action>
index 594a1a761f186bc2784158541d45f12e8197bf97..a7ca260c7aed889d1b1810f25da49f1665354d31 100644 (file)
@@ -1176,13 +1176,13 @@ Examples:
     // Will get back one AreaReference for C10, and
     //  another for D12 to D14
     AreaReference[] arefs = AreaReference.generateContiguous(aNamedCell.getReference());
-    for(int i=0; i<arefs.length; i++) {
+    for (int i=0; i&lt;arefs.length; i++) {
         CellReference[] crefs = arefs[i].getCells();
-        for (int j=0; j<crefs.length; j++) {
-           // Check it turns into real stuff
-           HSSFSheet s = wb.getSheet(crefs[j].getSheetName());
-           HSSFRow r = s.getRow(crefs[j].getRow());
-           HSSFCell c = r.getCell(crefs[j].getCol());
+        for (int j=0; j&lt;crefs.length; j++) {
+            // Check it turns into real stuff
+            HSSFSheet s = wb.getSheet(crefs[j].getSheetName());
+            HSSFRow r = s.getRow(crefs[j].getRow());
+            HSSFCell c = r.getCell(crefs[j].getCol());
             // extract the cell contents based on cell type etc.
         }
     }