From 7fe9843ddf568c68334798ee062696a40f048d5a Mon Sep 17 00:00:00 2001 From: brinn <brinn> Date: Wed, 9 Apr 2008 18:24:00 +0000 Subject: [PATCH] reformat: adapt comments to of 100 characters per line SVN: 5421 --- .../cisd/dbmigration/DBMigrationEngine.java | 6 +++-- .../cisd/dbmigration/DBScriptFormatter.java | 3 ++- .../cisd/dbmigration/DBUtilities.java | 6 +++-- .../cisd/dbmigration/DatabaseEngine.java | 11 +++++---- .../cisd/dbmigration/IDatabaseAdminDAO.java | 4 ++-- .../dbmigration/IDatabaseVersionLogDAO.java | 3 ++- .../cisd/dbmigration/IMassUploader.java | 17 ++++++++------ .../cisd/dbmigration/ISqlScriptProvider.java | 5 ++-- .../systemsx/cisd/dbmigration/LogEntry.java | 4 ++-- .../cisd/dbmigration/SqlScriptProvider.java | 23 +++++++++++-------- .../cisd/dbmigration/h2/H2AdminDAO.java | 3 ++- .../dbmigration/h2/H2StoredProcedures.java | 4 ++-- .../postgresql/DumpPreparator.java | 10 ++++---- .../dbmigration/SqlScriptProviderTest.java | 3 ++- .../h2/H2TestStoredProcedures.java | 3 ++- 15 files changed, 62 insertions(+), 43 deletions(-) diff --git a/dbmigration/source/java/ch/systemsx/cisd/dbmigration/DBMigrationEngine.java b/dbmigration/source/java/ch/systemsx/cisd/dbmigration/DBMigrationEngine.java index fa1d63856ec..50e74fec967 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 1478f1a08f5..84ba9c509f0 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 98eb23e2d23..86fb52f8225 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 0ff7a5bbfca..d45414612b7 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 8b90956d0ae..ca3804b0ee4 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 b7fa568c305..117d2b2067d 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 e7837fdacda..c1e712fd43f 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><orderSpecifier></i>=<i><tableName></i>.<file type></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><orderSpecifier></i>=<i><tableName></i>.<file type></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 5b6c3dbf0b0..7aa0334a897 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 db7702b1baf..07865667d58 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 dee4b81952c..759b99f99fe 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 <finish script> is found and <code>false</code> otherwise. + * Returns <code>true</code> if a <finish script> 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> * <data script folder>/<version>/function-<version>.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> * <schema script folder>/migration/migration-<fromVersion>-<toVersion>.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 ae42f4e8d38..36243d77b97 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 1d8e022aa4f..4233411a6c8 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 68ab0d7c422..b4cd2f9f4c3 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 cf4296eedf3..357dd09a2de 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 8bda7836748..4093f1717a6 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. */ -- GitLab