Author: nick
Date: Tue Jan  8 03:28:07 2008
New Revision: 609936

URL: http://svn.apache.org/viewvc?rev=609936&view=rev
Log:
Fix a few little bits of documentation xml

Modified:
    poi/trunk/src/documentation/content/xdocs/changes.xml
    poi/trunk/src/documentation/content/xdocs/hssf/quick-guide.xml

Modified: poi/trunk/src/documentation/content/xdocs/changes.xml
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/documentation/content/xdocs/changes.xml?rev=609936&r1=609935&r2=609936&view=diff
==============================================================================
--- poi/trunk/src/documentation/content/xdocs/changes.xml (original)
+++ poi/trunk/src/documentation/content/xdocs/changes.xml Tue Jan  8 03:28:07 
2008
@@ -35,12 +35,11 @@
     </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>

Modified: poi/trunk/src/documentation/content/xdocs/hssf/quick-guide.xml
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/documentation/content/xdocs/hssf/quick-guide.xml?rev=609936&r1=609935&r2=609936&view=diff
==============================================================================
--- poi/trunk/src/documentation/content/xdocs/hssf/quick-guide.xml (original)
+++ poi/trunk/src/documentation/content/xdocs/hssf/quick-guide.xml Tue Jan  8 
03:28:07 2008
@@ -1176,13 +1176,13 @@
     // 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.
         }
     }



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to