Removed DOCUMENT ME comments that were generated and applied source code
[utils] / test / eclipselink / src / main / java / org / wamblee / support / persistence / eclipselink / EclipselinkTables.java
index d4df0ddde9ed8dc21b669b1210bccacc325b4bf0..08235b5744bf0c78f0347a66f7e762ad8b2bb5ff 100644 (file)
@@ -1,20 +1,23 @@
+/*
+ * SCJD assignment, URLyBird, Erik Brakkee.
+ * Candidate ID: sr1399267.
+ */
 package org.wamblee.support.persistence.eclipselink;
 
-import java.util.Arrays;
-import java.util.List;
-
 import org.dbunit.dataset.DataSetException;
 import org.dbunit.dataset.filter.ITableFilterSimple;
 
+import java.util.Arrays;
+import java.util.List;
+
 /**
- * Toplink-specific tables. 
+ * Toplink-specific tables.
  */
 public class EclipselinkTables implements ITableFilterSimple {
+    private static final List<String> TABLES = Arrays
+        .asList(new String[] { "SEQUENCE" });
 
-       private static final List<String> TABLES = Arrays.asList(new String[] { "SEQUENCE" } );
-       
-       public boolean accept(String aTableName) throws DataSetException {
-               return TABLES.contains(aTableName);
-       }
-
+    public boolean accept(String aTableName) throws DataSetException {
+        return TABLES.contains(aTableName);
+    }
 }