Javadoc fixes.

This commit is contained in:
Michael Bayne
2010-12-14 17:09:43 +00:00
parent d0919f8239
commit 367c10cc52
3 changed files with 4 additions and 3 deletions
@@ -36,7 +36,8 @@ import com.samskivert.jdbc.DatabaseLiaison;
/** /**
* Encapsulates a modification of persistent objects. * Encapsulates a modification of persistent objects.
*/ */
public abstract class Modifier implements Operation<Integer> public abstract class Modifier
implements Operation<Integer>
{ {
/** /**
* A simple modifier that executes a single SQL statement. No cache flushing is done as a * A simple modifier that executes a single SQL statement. No cache flushing is done as a
@@ -29,7 +29,7 @@ import com.samskivert.depot.Stats;
import com.samskivert.jdbc.DatabaseLiaison; import com.samskivert.jdbc.DatabaseLiaison;
/** /**
* An abstraction that encompasses both {@link Query} and {@link Modifier} operations. * An abstraction that encompasses both {@link Fetcher} and {@link Modifier} operations.
*/ */
public interface Operation<T> public interface Operation<T>
{ {
@@ -71,7 +71,7 @@ public abstract class SQLBuilder
* that were defined in the generated SQL. * that were defined in the generated SQL.
* *
* This method throws {@link SQLException} and is thus meant to be called from within * This method throws {@link SQLException} and is thus meant to be called from within
* {@link Query#invoke} and {@link Modifier#invoke}. * {@link Fetcher#invoke} and {@link Modifier#invoke}.
*/ */
public PreparedStatement prepare (Connection conn) public PreparedStatement prepare (Connection conn)
throws SQLException throws SQLException