Release 3.0.0-RC3: Javadoc fixes

This commit is contained in:
Lukas Eder 2013-04-12 15:39:10 +02:00
parent d058080995
commit d8e18df627
4 changed files with 7 additions and 7 deletions

View File

@ -214,7 +214,7 @@ public interface Configuration extends Serializable {
* Create a derived configuration from this one, with a new execute listener
* providers.
*
* @param newExecuteListenerProvider The new execute listener providers to
* @param newExecuteListenerProviders The new execute listener providers to
* be contained in the derived configuration.
* @return The derived configuration.
*/

View File

@ -44,8 +44,8 @@ import java.util.EventListener;
import org.jooq.conf.Settings;
import org.jooq.conf.StatementType;
import org.jooq.impl.DefaultExecuteListener;
import org.jooq.impl.DSL;
import org.jooq.impl.DefaultExecuteListener;
import org.jooq.tools.LoggerListener;
import org.jooq.tools.StopWatchListener;
@ -55,7 +55,7 @@ import org.jooq.tools.StopWatchListener;
* <p>
* <code>ExecuteListener</code> is a base type for loggers, debuggers,
* profilers, data collectors that can be hooked into a jOOQ {@link DSLContext}
* using the {@link Configuration#getExecuteListeners()} property, passing
* using the {@link Configuration#executeListenerProviders()} property, passing
* <code>Settings</code> to
* {@link DSL#using(java.sql.Connection, SQLDialect, Settings)}. jOOQ
* will use that configuration at the beginning of a query execution event to

View File

@ -3,7 +3,7 @@
* <p>
* This package provides implementations for the jOOQ API from
* <code>org.jooq</code>, whose interfaces are constructed mostly through the
* {@link org.jooq.impl.DSLContext} class, which hides implementation facts from
* the public API
* {@link org.jooq.impl.DSL} and {@link org.jooq.DSLContext} classes, which hide
* implementation facts from the public API.
*/
package org.jooq.impl;

View File

@ -3,7 +3,7 @@
* <p>
* This package mostly contains interfaces that are implemented by the
* <code>org.jooq.impl</code> package. These interfaces are constructed mostly
* through the {@link org.jooq.impl.DSLContext} class, which hides implementation
* facts from the public API
* through the {@link org.jooq.impl.DSL} and {@link org.jooq.DSLContext}
* classes, which hide implementation facts from the public API.
*/
package org.jooq;