Removed DOCUMENT ME comments that were generated and applied source code
[utils] / test / enterprise / src / test / java / org / wamblee / support / persistence / MyTables.java
index 1283a8ff46feeb99b3d2f82430f1cae3b06c0119..a12d5a6252016e86b61fb31f85c0b1c952c9a848 100644 (file)
@@ -4,22 +4,23 @@ import org.dbunit.dataset.DataSetException;
 import org.dbunit.dataset.filter.ITableFilterSimple;
 
 /**
- * This class describes the tables we are testing. 
- * This implementation selects all tables with the "XYZ" prefix. 
+ * This class describes the tables we are testing. This implementation selects
+ * all tables with the "XYZ" prefix.
  */
 public class MyTables implements ITableFilterSimple {
-               
-       /**
-        * 
-        * @param aJpaTables Specific tables used by the JPA provider in addition to those for the 
-        *   entities.  
-        */
-       public MyTables() { 
-               // Empty.
-       }
 
-       public boolean accept(String tableName) throws DataSetException {
-               return tableName.startsWith("XYZ_");
-       }
+    /**
+     * 
+     * @param aJpaTables
+     *            Specific tables used by the JPA provider in addition to those
+     *            for the entities.
+     */
+    public MyTables() {
+        // Empty.
+    }
+
+    public boolean accept(String tableName) throws DataSetException {
+        return tableName.startsWith("XYZ_");
+    }
 
 }