Added some Javadoc

This commit is contained in:
Lukas Eder 2013-04-05 08:44:39 +02:00
parent ba0c5e4734
commit a654aff1ce
2 changed files with 9 additions and 3 deletions

View File

@ -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
*/

View File

@ -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) {