Javadoc fixes.
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user