diff --git a/dbmigration/source/java/ch/systemsx/cisd/dbmigration/DBMigrationEngine.java b/dbmigration/source/java/ch/systemsx/cisd/dbmigration/DBMigrationEngine.java
index fa1d63856ec84a9ee50050ac2ea07303e3528faa..50e74fec9673ae434fc0f27f12f149ee7ecc22e8 100644
--- a/dbmigration/source/java/ch/systemsx/cisd/dbmigration/DBMigrationEngine.java
+++ b/dbmigration/source/java/ch/systemsx/cisd/dbmigration/DBMigrationEngine.java
@@ -73,7 +73,8 @@ public class DBMigrationEngine
     /**
      * Creates an instance for the specified DAO factory and SQL script provider.
      * 
-     * @param shouldCreateFromScratch If <code>true</code> the database should be dropped and created from scratch.
+     * @param shouldCreateFromScratch If <code>true</code> the database should be dropped and
+     *            created from scratch.
      */
     public DBMigrationEngine(IDAOFactory daoFactory, ISqlScriptProvider scriptProvider,
             boolean shouldCreateFromScratch)
@@ -89,7 +90,8 @@ public class DBMigrationEngine
      * Create or migrate database to the specified version.
      * 
      * @throws ConfigurationFailureException If creation/migration fails due to a missing script
-     * @throws EnvironmentFailureException If creation/migration fails due to an inconsistent database.
+     * @throws EnvironmentFailureException If creation/migration fails due to an inconsistent
+     *             database.
      */
     public void migrateTo(String version)
     {
diff --git a/dbmigration/source/java/ch/systemsx/cisd/dbmigration/DBScriptFormatter.java b/dbmigration/source/java/ch/systemsx/cisd/dbmigration/DBScriptFormatter.java
index 1478f1a08f5a90a53699ca645a09569488f17b91..84ba9c509f046a3099e5161efe876aadf5c53373 100644
--- a/dbmigration/source/java/ch/systemsx/cisd/dbmigration/DBScriptFormatter.java
+++ b/dbmigration/source/java/ch/systemsx/cisd/dbmigration/DBScriptFormatter.java
@@ -32,7 +32,8 @@ import org.apache.commons.lang.StringUtils;
 import ch.systemsx.cisd.common.utilities.FileUtilities;
 
 /**
- * A class that formats the SQL schema scripts. The output will have a canonical form that is easy to compare.
+ * A class that formats the SQL schema scripts. The output will have a canonical form that is easy
+ * to compare.
  * 
  * @author Bernd Rinn
  */
diff --git a/dbmigration/source/java/ch/systemsx/cisd/dbmigration/DBUtilities.java b/dbmigration/source/java/ch/systemsx/cisd/dbmigration/DBUtilities.java
index 98eb23e2d23cc526aef00c30e70f00567b87736c..86fb52f822547c6641534ffc6a7857adc21c7b7b 100644
--- a/dbmigration/source/java/ch/systemsx/cisd/dbmigration/DBUtilities.java
+++ b/dbmigration/source/java/ch/systemsx/cisd/dbmigration/DBUtilities.java
@@ -38,7 +38,8 @@ public final class DBUtilities
     }
 
     /**
-     * Checks whether given <code>DataAccessException</code> is caused by a "database does not exist" exception.
+     * Checks whether given <code>DataAccessException</code> is caused by a "database does not
+     * exist" exception.
      * <p>
      * This is database specific.
      * </p>
@@ -50,7 +51,8 @@ public final class DBUtilities
     }
 
     /**
-     * Checks whether given <code>DataAccessException</code> is caused by a "duplicate object" exception.
+     * Checks whether given <code>DataAccessException</code> is caused by a "duplicate object"
+     * exception.
      * <p>
      * This is database specific.
      * </p>
diff --git a/dbmigration/source/java/ch/systemsx/cisd/dbmigration/DatabaseEngine.java b/dbmigration/source/java/ch/systemsx/cisd/dbmigration/DatabaseEngine.java
index 0ff7a5bbfca7afcaf2cc04a475823947745de780..d45414612b75b08e754e88097a415a034ae922de 100644
--- a/dbmigration/source/java/ch/systemsx/cisd/dbmigration/DatabaseEngine.java
+++ b/dbmigration/source/java/ch/systemsx/cisd/dbmigration/DatabaseEngine.java
@@ -143,9 +143,10 @@ public enum DatabaseEngine
     }
 
     /**
-     * @param urlHostPartOrNull The host part of the URL, or <code>null</code>, if the default host part should be
-     *            used.
-     * @param databaseName The name of the database (may be ignored for the admin URL, depending on the database engine)
+     * @param urlHostPartOrNull The host part of the URL, or <code>null</code>, if the default
+     *            host part should be used.
+     * @param databaseName The name of the database (may be ignored for the admin URL, depending on
+     *            the database engine)
      * @return The admin URL of the db.
      */
     public final String getAdminURL(String urlHostPartOrNull, String databaseName)
@@ -162,8 +163,8 @@ public enum DatabaseEngine
     }
 
     /**
-     * @param urlHostPartOrNull The host part of the URL, or <code>null</code>, if the default host part should be
-     *            used.
+     * @param urlHostPartOrNull The host part of the URL, or <code>null</code>, if the default
+     *            host part should be used.
      * @param databaseName The name of the database.
      * @return The URL of the db.
      */
diff --git a/dbmigration/source/java/ch/systemsx/cisd/dbmigration/IDatabaseAdminDAO.java b/dbmigration/source/java/ch/systemsx/cisd/dbmigration/IDatabaseAdminDAO.java
index 8b90956d0aeec192877e990f35228305c8830c88..ca3804b0ee4beae7d2005688f72915048841e271 100644
--- a/dbmigration/source/java/ch/systemsx/cisd/dbmigration/IDatabaseAdminDAO.java
+++ b/dbmigration/source/java/ch/systemsx/cisd/dbmigration/IDatabaseAdminDAO.java
@@ -36,8 +36,8 @@ public interface IDatabaseAdminDAO
     public String getDatabaseURL();
 
     /**
-     * Creates the owner/user of the database. Implementation should handle the case of already existing owner/user
-     * gracefully.
+     * Creates the owner/user of the database. Implementation should handle the case of already
+     * existing owner/user gracefully.
      */
     public void createOwner();
 
diff --git a/dbmigration/source/java/ch/systemsx/cisd/dbmigration/IDatabaseVersionLogDAO.java b/dbmigration/source/java/ch/systemsx/cisd/dbmigration/IDatabaseVersionLogDAO.java
index b7fa568c3052695225c83edb7c2272e6a9c8c3c7..117d2b2067d68600ca37f46e29535793fe61c40f 100644
--- a/dbmigration/source/java/ch/systemsx/cisd/dbmigration/IDatabaseVersionLogDAO.java
+++ b/dbmigration/source/java/ch/systemsx/cisd/dbmigration/IDatabaseVersionLogDAO.java
@@ -27,7 +27,8 @@ import ch.systemsx.cisd.common.db.ISqlScriptExecutionLogger;
 public interface IDatabaseVersionLogDAO extends ISqlScriptExecutionLogger
 {
     /**
-     * Returns <code>true</code> if the database instance with database version log can be connected.
+     * Returns <code>true</code> if the database instance with database version log can be
+     * connected.
      */
     public boolean canConnectToDatabase();
 
diff --git a/dbmigration/source/java/ch/systemsx/cisd/dbmigration/IMassUploader.java b/dbmigration/source/java/ch/systemsx/cisd/dbmigration/IMassUploader.java
index e7837fdacda07fd565cec2a00cee73501a6ea6b2..c1e712fd43f49e716aa0ad4e86bb9b252156b267 100644
--- a/dbmigration/source/java/ch/systemsx/cisd/dbmigration/IMassUploader.java
+++ b/dbmigration/source/java/ch/systemsx/cisd/dbmigration/IMassUploader.java
@@ -19,12 +19,14 @@ package ch.systemsx.cisd.dbmigration;
 import java.io.File;
 
 /**
- * Classes that implement this interface encapsulate mass uploading of tabular files to the database. The files to be
- * processed by implementations of this class are supposed to be <code>csv</code> files that can be uploaded to
- * exactly one table. They need to follow the naming convention
- * <code><i>&lt;orderSpecifier&gt;</i>=<i>&lt;tableName&gt;</i>.&lt;file type&gt;</code>. Here the order specifier
- * ensures that the dependency is right while the table name is the name of the table to upload the data to. The file
- * type has to be <code>csv</code> (Comma veparated values) or <code>tsv</code> (TAB separated values).
+ * Classes that implement this interface encapsulate mass uploading of tabular files to the
+ * database. The files to be processed by implementations of this class are supposed to be
+ * <code>csv</code> files that can be uploaded to exactly one table. They need to follow the
+ * naming convention
+ * <code><i>&lt;orderSpecifier&gt;</i>=<i>&lt;tableName&gt;</i>.&lt;file type&gt;</code>. Here
+ * the order specifier ensures that the dependency is right while the table name is the name of the
+ * table to upload the data to. The file type has to be <code>csv</code> (Comma veparated values)
+ * or <code>tsv</code> (TAB separated values).
  * 
  * @author Bernd Rinn
  */
@@ -35,7 +37,8 @@ public interface IMassUploader
      * Upload the data from file <var>massUploadFile</var> to the database.
      * 
      * @param massUploadFiles Files to upload to the database, following the naming convention
-     *            <code>orderSpecifier=tableName.csv</code> or <code>orderSpecifier=tableName.tsv</code>.
+     *            <code>orderSpecifier=tableName.csv</code> or
+     *            <code>orderSpecifier=tableName.tsv</code>.
      */
     public void performMassUpload(File[] massUploadFiles);
 
diff --git a/dbmigration/source/java/ch/systemsx/cisd/dbmigration/ISqlScriptProvider.java b/dbmigration/source/java/ch/systemsx/cisd/dbmigration/ISqlScriptProvider.java
index 5b6c3dbf0b075a1ef3bc501b32c9852e0743a0b6..7aa0334a89744c66c8a3e80ed0acbf19959a5f3f 100644
--- a/dbmigration/source/java/ch/systemsx/cisd/dbmigration/ISqlScriptProvider.java
+++ b/dbmigration/source/java/ch/systemsx/cisd/dbmigration/ISqlScriptProvider.java
@@ -29,8 +29,9 @@ import ch.systemsx.cisd.common.Script;
 public interface ISqlScriptProvider
 {
     /**
-     * Returns <code>true</code> if this script provider is suitable for a dump restore of the given <var>version</var>
-     * of the database, and <code>false</code>, if it is suitable for a regular setup.
+     * Returns <code>true</code> if this script provider is suitable for a dump restore of the
+     * given <var>version</var> of the database, and <code>false</code>, if it is suitable for a
+     * regular setup.
      */
     public boolean isDumpRestore(String version);
 
diff --git a/dbmigration/source/java/ch/systemsx/cisd/dbmigration/LogEntry.java b/dbmigration/source/java/ch/systemsx/cisd/dbmigration/LogEntry.java
index db7702b1bafc708b252c5e5798879380a007b429..07865667d5883059f7cc8104cb78fd4d05f50895 100644
--- a/dbmigration/source/java/ch/systemsx/cisd/dbmigration/LogEntry.java
+++ b/dbmigration/source/java/ch/systemsx/cisd/dbmigration/LogEntry.java
@@ -114,8 +114,8 @@ public class LogEntry
     }
 
     /**
-     * Sets runStatus based its string representation. If the argument does not match one of the valid constants.
-     * {@link RunStatus#UNKNOWN} will be used.
+     * Sets runStatus based its string representation. If the argument does not match one of the
+     * valid constants. {@link RunStatus#UNKNOWN} will be used.
      */
     public void setRunStatus(String runStatusAsString)
     {
diff --git a/dbmigration/source/java/ch/systemsx/cisd/dbmigration/SqlScriptProvider.java b/dbmigration/source/java/ch/systemsx/cisd/dbmigration/SqlScriptProvider.java
index dee4b81952c8e44abcc1dca6ed3465a57116c5f2..759b99f99fe267ab4a0ff138feae3e298ebfe9eb 100644
--- a/dbmigration/source/java/ch/systemsx/cisd/dbmigration/SqlScriptProvider.java
+++ b/dbmigration/source/java/ch/systemsx/cisd/dbmigration/SqlScriptProvider.java
@@ -28,9 +28,9 @@ import ch.systemsx.cisd.common.logging.LogFactory;
 import ch.systemsx.cisd.common.utilities.FileUtilities;
 
 /**
- * Implementation of {@link ISqlScriptProvider} based on files in classpath or working directory. This provider tries
- * first to load a resource. If this isn't successful the provider tries to look for files relative to the working
- * directory.
+ * Implementation of {@link ISqlScriptProvider} based on files in classpath or working directory.
+ * This provider tries first to load a resource. If this isn't successful the provider tries to look
+ * for files relative to the working directory.
  * 
  * @author Franz-Josef Elmer
  */
@@ -48,12 +48,12 @@ public class SqlScriptProvider implements ISqlScriptProvider
     private final String specificScriptFolder;
 
     /**
-     * Creates an instance for the specified script folders. They are either resource folders or folders relative to the
-     * working directory.
+     * Creates an instance for the specified script folders. They are either resource folders or
+     * folders relative to the working directory.
      * 
      * @param schemaScriptRootFolder Root folder of schema, migration and data scripts.
-     * @param databaseEngineCode The code of the database engine. Used to find the db engine specific schema script
-     *            folder.
+     * @param databaseEngineCode The code of the database engine. Used to find the db engine
+     *            specific schema script folder.
      */
     public SqlScriptProvider(String schemaScriptRootFolder, String databaseEngineCode)
     {
@@ -62,7 +62,8 @@ public class SqlScriptProvider implements ISqlScriptProvider
     }
 
     /**
-     * Returns <code>true</code> if a &lt;finish script&gt; is found and <code>false</code> otherwise.
+     * Returns <code>true</code> if a &lt;finish script&gt; is found and <code>false</code>
+     * otherwise.
      */
     public boolean isDumpRestore(String version)
     {
@@ -100,7 +101,8 @@ public class SqlScriptProvider implements ISqlScriptProvider
     }
 
     /**
-     * Returns the script containing all functions for the specified version. The name of the script is expected to be
+     * Returns the script containing all functions for the specified version. The name of the script
+     * is expected to be
      * 
      * <pre>
      * &lt;data script folder&gt;/&lt;version&gt;/function-&lt;version&gt;.sql
@@ -124,7 +126,8 @@ public class SqlScriptProvider implements ISqlScriptProvider
     }
 
     /**
-     * Returns the migration script for the specified versions. The name of the script is expected to be
+     * Returns the migration script for the specified versions. The name of the script is expected
+     * to be
      * 
      * <pre>
      * &lt;schema script folder&gt;/migration/migration-&lt;fromVersion&gt;-&lt;toVersion&gt;.sql
diff --git a/dbmigration/source/java/ch/systemsx/cisd/dbmigration/h2/H2AdminDAO.java b/dbmigration/source/java/ch/systemsx/cisd/dbmigration/h2/H2AdminDAO.java
index ae42f4e8d38882f0d1a3677cd451b0a0ebe6d430..36243d77b978a7b65b9622d73c5e804075109525 100644
--- a/dbmigration/source/java/ch/systemsx/cisd/dbmigration/h2/H2AdminDAO.java
+++ b/dbmigration/source/java/ch/systemsx/cisd/dbmigration/h2/H2AdminDAO.java
@@ -118,7 +118,8 @@ public class H2AdminDAO extends SimpleJdbcDaoSupport implements IDatabaseAdminDA
 
     public void createDatabase()
     {
-        // Creation of databases happens "on the fly" with H2, we only need to create the database_version_logs table
+        // Creation of databases happens "on the fly" with H2, we only need to create the
+        // database_version_logs table
         createDatabaseVersionLogsTable();
     }
 
diff --git a/dbmigration/source/java/ch/systemsx/cisd/dbmigration/h2/H2StoredProcedures.java b/dbmigration/source/java/ch/systemsx/cisd/dbmigration/h2/H2StoredProcedures.java
index 1d8e022aa4f1cc08b749c6459567c0c3eeb751f4..4233411a6c8eee95d6fb5a11b3594db6ff38d8ce 100644
--- a/dbmigration/source/java/ch/systemsx/cisd/dbmigration/h2/H2StoredProcedures.java
+++ b/dbmigration/source/java/ch/systemsx/cisd/dbmigration/h2/H2StoredProcedures.java
@@ -29,8 +29,8 @@ public class H2StoredProcedures
 {
 
     /**
-     * Renames the sequence <var>oldName</var> into <var>newName</var> ensuring the <code>NEXTVAL()</code> will
-     * return the right value.
+     * Renames the sequence <var>oldName</var> into <var>newName</var> ensuring the
+     * <code>NEXTVAL()</code> will return the right value.
      * 
      * @return The next value the sequence will deliver.
      */
diff --git a/dbmigration/source/java/ch/systemsx/cisd/dbmigration/postgresql/DumpPreparator.java b/dbmigration/source/java/ch/systemsx/cisd/dbmigration/postgresql/DumpPreparator.java
index 68ab0d7c4227cbd0df4b4228c6850cad7945e5af..b4cd2f9f4c3bb9f04eebec5a8765610a394a5d88 100644
--- a/dbmigration/source/java/ch/systemsx/cisd/dbmigration/postgresql/DumpPreparator.java
+++ b/dbmigration/source/java/ch/systemsx/cisd/dbmigration/postgresql/DumpPreparator.java
@@ -40,9 +40,11 @@ import javax.swing.JFileChooser;
 import org.apache.commons.io.IOUtils;
 
 /**
- * Helper application which creates 'mass upload' files to be used to setup the database from a PostgreSQL dump.
+ * Helper application which creates 'mass upload' files to be used to setup the database from a
+ * PostgreSQL dump.
  * <p>
- * <b>Important:</b> When creating the dump file with <code>pg_dump</code> use the option <b>--no-owner</b>.
+ * <b>Important:</b> When creating the dump file with <code>pg_dump</code> use the option
+ * <b>--no-owner</b>.
  * <p>
  * Note, that this is a stand alone class which only uses J2EE library classes.
  * 
@@ -88,8 +90,8 @@ public class DumpPreparator
     /**
      * Creates all files necessary to setup a database from the specified PostgreSQL dump file.
      * 
-     * @param destination Destination folder in which the folder with the files will be created. The folder will be
-     *            named after the database version extracted from the dump.
+     * @param destination Destination folder in which the folder with the files will be created. The
+     *            folder will be named after the database version extracted from the dump.
      */
     public static void createUploadFiles(File dumpFile, File destination) throws IOException
     {
diff --git a/dbmigration/sourceTest/java/ch/systemsx/cisd/dbmigration/SqlScriptProviderTest.java b/dbmigration/sourceTest/java/ch/systemsx/cisd/dbmigration/SqlScriptProviderTest.java
index cf4296eedf3abe8e69672604c11ae74c0e50a9f4..357dd09a2deb263e221e2adda7fa81a7a7fa2ce4 100644
--- a/dbmigration/sourceTest/java/ch/systemsx/cisd/dbmigration/SqlScriptProviderTest.java
+++ b/dbmigration/sourceTest/java/ch/systemsx/cisd/dbmigration/SqlScriptProviderTest.java
@@ -150,7 +150,8 @@ public class SqlScriptProviderTest
         assertEquals("code: schema", script.getCode().trim());
     }
 
-    // Note: we make it dependent on testGetSchemaScript(), because we delete the specific schema script
+    // Note: we make it dependent on testGetSchemaScript(), because we delete the specific schema
+    // script
     // in this test case and thus testGetSchemaScript() would fail if run after this test case.
     @Test(dependsOnMethods = "testGetSchemaScript")
     public void testGetGenericSchemaScript()
diff --git a/dbmigration/sourceTest/java/ch/systemsx/cisd/dbmigration/h2/H2TestStoredProcedures.java b/dbmigration/sourceTest/java/ch/systemsx/cisd/dbmigration/h2/H2TestStoredProcedures.java
index 8bda783674805add350929d33a604f5d246fda00..4093f1717a6c3752074398ad938ce3763666398f 100644
--- a/dbmigration/sourceTest/java/ch/systemsx/cisd/dbmigration/h2/H2TestStoredProcedures.java
+++ b/dbmigration/sourceTest/java/ch/systemsx/cisd/dbmigration/h2/H2TestStoredProcedures.java
@@ -27,7 +27,8 @@ public class H2TestStoredProcedures
 {
 
     /**
-     * Compares <var>expected</var> with <var>actual</var> and throws an exception if they are not equal.
+     * Compares <var>expected</var> with <var>actual</var> and throws an exception if they are not
+     * equal.
      * 
      * @return 0.
      */