javadoc updates
[utils] / test / enterprise / src / main / java / org / wamblee / support / persistence / CompositeJpaTables.java
index 25f4894db5b986a59ad96a837aacd9e6f09f3779..b44ff7cce56e52ca6ae8622772782b9eaa7613aa 100644 (file)
@@ -21,14 +21,26 @@ import java.util.List;
 import org.dbunit.dataset.DataSetException;
 import org.dbunit.dataset.filter.ITableFilterSimple;
 
+/**
+ * Composite JPA tables. Implements the logical or of several table filters. 
+ * 
+ * @author Erik Brakkee
+ */
 public class CompositeJpaTables implements ITableFilterSimple {
 
     private List<ITableFilterSimple> tables;
 
+    /**
+     * Construcst the tables. 
+     */
     public CompositeJpaTables() {
         tables = new ArrayList<ITableFilterSimple>();
     }
 
+    /**
+     * Adds a table filter. 
+     * @param aFilter filter. 
+     */
     public void add(ITableFilterSimple aFilter) {
         tables.add(aFilter);
     }