Added some Javadoc
This commit is contained in:
parent
ba0c5e4734
commit
a654aff1ce
@ -44,7 +44,7 @@ import org.jooq.impl.Executor;
|
||||
import org.jooq.tools.StringUtils;
|
||||
|
||||
/**
|
||||
* An execute listener that does pretty printing of every executed statement
|
||||
* An execute listener that does pretty printing of every executed statement.
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
|
||||
@ -42,14 +42,20 @@ import org.jooq.ExecuteContext;
|
||||
import org.jooq.ExecuteType;
|
||||
import org.jooq.impl.DefaultExecuteListener;
|
||||
|
||||
/**
|
||||
* An <code>ExecuteListener</code> that counts the number of executions in all
|
||||
* integration tests.
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
public class TestStatisticsListener extends DefaultExecuteListener {
|
||||
|
||||
/**
|
||||
* Generated UID
|
||||
*/
|
||||
private static final long serialVersionUID = 7399239846062763212L;
|
||||
private static final long serialVersionUID = 7399239846062763212L;
|
||||
|
||||
public static Map<ExecuteType, Integer> STATISTICS = new HashMap<ExecuteType, Integer>();
|
||||
public static Map<ExecuteType, Integer> STATISTICS = new HashMap<ExecuteType, Integer>();
|
||||
|
||||
@Override
|
||||
public synchronized void start(ExecuteContext ctx) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user