From 2b6c704ca7e6f269b3fbdad290819a583f5a9d49 Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Fri, 3 May 2013 13:52:30 +0200 Subject: [PATCH] Fixed Javadoc --- .../src/main/java/org/jooq/conf/SettingsTools.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/jOOQ/src/main/java/org/jooq/conf/SettingsTools.java b/jOOQ/src/main/java/org/jooq/conf/SettingsTools.java index 2e5349894f..37b2b3a9f9 100644 --- a/jOOQ/src/main/java/org/jooq/conf/SettingsTools.java +++ b/jOOQ/src/main/java/org/jooq/conf/SettingsTools.java @@ -46,7 +46,7 @@ import java.sql.Statement; import javax.xml.bind.JAXB; /** - * Convenience methods for jOOQ runtime settings + * Convenience methods for jOOQ runtime settings. * * @author Lukas Eder */ @@ -86,7 +86,7 @@ public final class SettingsTools { } /** - * Get the statement type from the settings + * Get the statement type from the settings. */ public static final StatementType getStatementType(Settings settings) { if (settings != null) { @@ -101,21 +101,21 @@ public final class SettingsTools { } /** - * Whether a {@link PreparedStatement} should be executed + * Whether a {@link PreparedStatement} should be executed. */ public static final boolean executePreparedStatements(Settings settings) { return getStatementType(settings) == PREPARED_STATEMENT; } /** - * Whether static {@link Statement} should be executed + * Whether static {@link Statement} should be executed. */ public static final boolean executeStaticStatements(Settings settings) { return getStatementType(settings) == STATIC_STATEMENT; } /** - * Lazy access to {@link RenderMapping} + * Lazy access to {@link RenderMapping}. */ public static final RenderMapping getRenderMapping(Settings settings) { if (settings.getRenderMapping() == null) { @@ -126,7 +126,7 @@ public final class SettingsTools { } /** - * Retrieve the configured default settings + * Retrieve the configured default settings. *

*