[#2628] Add missing Javadoc to DefaultDSLContext

This commit is contained in:
Lukas Eder 2013-08-19 13:52:40 +02:00
parent acaf7f105c
commit 09eb2de5f0

View File

@ -182,6 +182,12 @@ import org.jooq.impl.BatchCRUD.Action;
import org.jooq.tools.csv.CSVReader;
/**
* A default implementation for {@link DSLContext}.
* <p>
* You may use this as a base implementation for custom {@link DSLContext}
* subtypes preventing potential API breakage when upgrading jOOQ, or to
* delegate DSL method calls to your custom implementations.
*
* @author Lukas Eder
*/
@SuppressWarnings({ "rawtypes", "unchecked" })