Revision: 671
          http://svn.sourceforge.net/jwebunit/?rev=671&view=rev
Author:   henryju
Date:     2007-03-03 09:49:31 -0800 (Sat, 03 Mar 2007)

Log Message:
-----------
Table.getRows is now public. [1633967]

Modified Paths:
--------------
    
branches/1.x/jwebunit-core/src/main/java/net/sourceforge/jwebunit/api/IJWebUnitDialog.java
    
branches/1.x/jwebunit-core/src/main/java/net/sourceforge/jwebunit/html/Table.java
    branches/1.x/src/changes/changes.xml

Modified: 
branches/1.x/jwebunit-core/src/main/java/net/sourceforge/jwebunit/api/IJWebUnitDialog.java
===================================================================
--- 
branches/1.x/jwebunit-core/src/main/java/net/sourceforge/jwebunit/api/IJWebUnitDialog.java
  2007-03-03 17:43:59 UTC (rev 670)
+++ 
branches/1.x/jwebunit-core/src/main/java/net/sourceforge/jwebunit/api/IJWebUnitDialog.java
  2007-03-03 17:49:31 UTC (rev 671)
@@ -4,7 +4,6 @@
  
******************************************************************************/
 package net.sourceforge.jwebunit.api;
 
-import java.io.File;
 import java.io.InputStream;
 import java.net.URL;
 import java.util.List;

Modified: 
branches/1.x/jwebunit-core/src/main/java/net/sourceforge/jwebunit/html/Table.java
===================================================================
--- 
branches/1.x/jwebunit-core/src/main/java/net/sourceforge/jwebunit/html/Table.java
   2007-03-03 17:43:59 UTC (rev 670)
+++ 
branches/1.x/jwebunit-core/src/main/java/net/sourceforge/jwebunit/html/Table.java
   2007-03-03 17:49:31 UTC (rev 671)
@@ -5,14 +5,9 @@
 package net.sourceforge.jwebunit.html;
 
 import java.util.ArrayList;
-import java.util.Enumeration;
-import java.util.Hashtable;
 
 import junit.framework.Assert;
 
-import org.apache.regexp.RE;
-import org.apache.regexp.RESyntaxException;
-
 /**
  * Represents an expected table for comparison with an actual html table.
  * 
@@ -75,7 +70,7 @@
         return getRows().size();
     }
 
-    ArrayList getRows() {
+    public ArrayList getRows() {
         return rows;
     }
 
@@ -138,14 +133,4 @@
         sub.assertMatch(t);
     }
 
-    private RE getRE(String regexp) {
-        RE re = null;
-        try {
-            re = new RE(regexp, RE.MATCH_SINGLELINE);
-        } catch (RESyntaxException e) {
-            Assert.fail(e.toString());
-        }
-        return re;
-    }
-
 }

Modified: branches/1.x/src/changes/changes.xml
===================================================================
--- branches/1.x/src/changes/changes.xml        2007-03-03 17:43:59 UTC (rev 
670)
+++ branches/1.x/src/changes/changes.xml        2007-03-03 17:49:31 UTC (rev 
671)
@@ -8,6 +8,9 @@
     </properties>
     <body>
         <release version="1.4-RC4" date="UNKNOW">
+            <action type="fix" dev="Julien Henry" issue="1633967" due-to="Dirk 
Jerusalem">
+                Table.getRows is now public.
+            </action>
             <action type="fix" dev="Julien Henry" issue="1638720">
                 gotoFrame should throw an Exception when no frame is found.
             </action>


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
JWebUnit-development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jwebunit-development

Reply via email to