(no commit message)
[utils] / test / enterprise / src / main / java / org / wamblee / test / persistence / CompositeJpaTables.java
index 23db6d29e39aec2547f64d366acab984c4c8a75e..d1d2d3acb8abfdb9da3b992cca7ab4244598f5ec 100644 (file)
@@ -12,7 +12,7 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- */ 
+ */
 package org.wamblee.test.persistence;
 
 import java.util.ArrayList;
@@ -22,7 +22,7 @@ import org.dbunit.dataset.DataSetException;
 import org.dbunit.dataset.filter.ITableFilterSimple;
 
 /**
- * Composite JPA tables. Implements the logical or of several table filters. 
+ * Composite JPA tables. Implements the logical or of several table filters.
  * 
  * @author Erik Brakkee
  */
@@ -31,15 +31,17 @@ public class CompositeJpaTables implements ITableFilterSimple {
     private List<ITableFilterSimple> tables;
 
     /**
-     * Construcst the tables. 
+     * Construcst the tables.
      */
     public CompositeJpaTables() {
         tables = new ArrayList<ITableFilterSimple>();
     }
 
     /**
-     * Adds a table filter. 
-     * @param aFilter filter. 
+     * Adds a table filter.
+     * 
+     * @param aFilter
+     *            filter.
      */
     public void add(ITableFilterSimple aFilter) {
         tables.add(aFilter);