[#3665] Typos in Javadocs
This commit is contained in:
parent
ece9035bc9
commit
64306e5596
@ -48,7 +48,7 @@ import org.jooq.exception.DataAccessException;
|
||||
/**
|
||||
* The bind context is used for binding {@link QueryPart}'s and their contained
|
||||
* values to a {@link PreparedStatement}'s bind variables. A new bind context is
|
||||
* instanciated every time a {@link Query} is bound. <code>QueryPart</code>'s
|
||||
* instantiated every time a {@link Query} is bound. <code>QueryPart</code>'s
|
||||
* will then pass the same context to their components
|
||||
* <p>
|
||||
* This interface is for JOOQ INTERNAL USE only. Do not reference directly
|
||||
|
||||
@ -65,13 +65,13 @@ import org.jooq.tools.StopWatchListener;
|
||||
* <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
|
||||
* instanciate all the provided listeners. In other words, listeners have the
|
||||
* instantiate all the provided listeners. In other words, listeners have the
|
||||
* same lifetime as a single query execution, and can thus be used to store
|
||||
* state between the moment when a query execution starts, and the moment when a
|
||||
* query execution finishes. Advanced <code>ExecuteListeners</code> can also
|
||||
* provide custom implementations of {@link Connection},
|
||||
* {@link PreparedStatement}, {@link ResultSet}, {@link SQLException} or
|
||||
* {@link RuntimeException} to jOOQ in apropriate methods.
|
||||
* {@link RuntimeException} to jOOQ in appropriate methods.
|
||||
* <p>
|
||||
* For convenience, consider extending {@link DefaultExecuteListener} instead of
|
||||
* implementing this interface. This will prevent compilation errors in future
|
||||
|
||||
@ -947,7 +947,7 @@ public interface Record extends Attachable, Comparable<Record> {
|
||||
* Map resulting records onto a custom type.
|
||||
* <p>
|
||||
* This is the same as {@link #into(Class)}, except that no new object is
|
||||
* instanciated as a result. Instead, you can provide your own custom POJO
|
||||
* instantiated as a result. Instead, you can provide your own custom POJO
|
||||
* instance.
|
||||
*
|
||||
* @param <E> The generic entity type.
|
||||
|
||||
@ -47,7 +47,7 @@ import org.jooq.conf.Settings;
|
||||
/**
|
||||
* The render context is used for rendering {@link QueryPart}'s to SQL.
|
||||
* <p>
|
||||
* A new render context is instanciated every time a {@link Query} is rendered.
|
||||
* A new render context is instantiated every time a {@link Query} is rendered.
|
||||
* <code>QueryPart</code>'s will then pass the same context to their components
|
||||
*
|
||||
* @author Lukas Eder
|
||||
|
||||
@ -72,7 +72,7 @@ import org.jooq.exception.InvalidResultException;
|
||||
* <p>
|
||||
* <code>UpdatableRecords</code> are {@link Attachable}, which means that they
|
||||
* hold an underlying {@link Configuration} that they can be detached from. They
|
||||
* can also be instanciated without any underlying {@link Configuration}, in
|
||||
* can also be instantiated without any underlying {@link Configuration}, in
|
||||
* case of which they have to be attached first, in order to be refreshed,
|
||||
* stored, or deleted.
|
||||
*
|
||||
|
||||
@ -249,7 +249,7 @@ import org.jooq.types.DayToSecond;
|
||||
* <p>
|
||||
* The {@link DSLContext} and this <code>DSL</code> are the main entry point for
|
||||
* client code, to access jOOQ classes and functionality. Here, you can
|
||||
* instanciate all of those objects that cannot be accessed through other
|
||||
* instantiate all of those objects that cannot be accessed through other
|
||||
* objects. For example, to create a {@link Field} representing a constant
|
||||
* value, you can write:
|
||||
* <p>
|
||||
|
||||
@ -179,7 +179,7 @@ import org.jooq.tools.reflect.Reflect;
|
||||
* <p>
|
||||
* <h5>If the supplied type is an interface or an abstract class</h5>
|
||||
* <p>
|
||||
* Abstract types are instanciated using Java reflection {@link Proxy}
|
||||
* Abstract types are instantiated using Java reflection {@link Proxy}
|
||||
* mechanisms. The returned proxy will wrap a {@link HashMap} containing
|
||||
* properties mapped by getters and setters of the supplied type. Methods (even
|
||||
* JPA-annotated ones) other than standard POJO getters and setters are not
|
||||
|
||||
@ -52,7 +52,7 @@ import java.util.logging.Level;
|
||||
* <li>log4j</li>
|
||||
* <li>jav.util.logging</li>
|
||||
* </ul>
|
||||
* <code>JooqLogger</code> tries to instanciate any of the above loggers,
|
||||
* <code>JooqLogger</code> tries to instantiate any of the above loggers,
|
||||
* catching potential {@link NoClassDefFoundError}'s in case any logger API
|
||||
* cannot be found on the classpath.
|
||||
*
|
||||
|
||||
Loading…
Reference in New Issue
Block a user