Release 1.6.4 - Corrected Javadoc

This commit is contained in:
Lukas Eder 2011-08-07 14:10:21 +00:00
parent 223104dd9f
commit 2cc273f1e2
3 changed files with 5 additions and 4 deletions

View File

@ -119,7 +119,7 @@ public interface UpdatableRecord<R extends Record> extends Updatable<R>, TableRe
* @return <code>1</code> if the record was stored to the database. <code>0
* </code> if storing was not necessary.
* @throws SQLException
* @see {@link #storeUsing(TableField...)}
* @see #storeUsing(TableField...)
*/
int store() throws SQLException;
@ -138,7 +138,7 @@ public interface UpdatableRecord<R extends Record> extends Updatable<R>, TableRe
* @return <code>1</code> if the record was deleted from the database.
* <code>0</code> if deletion was not necessary.
* @throws SQLException
* @see {@link #deleteUsing(TableField...)}
* @see #deleteUsing(TableField...)
*/
int delete() throws SQLException;

View File

@ -57,7 +57,7 @@ public class RecordImpl extends AbstractRecord {
/**
* @deprecated - 1.6.4 [#789] - Create attached records using
* {@link Factory#newRecord(Table)} instead. Detached records
* can be created using {@link #TableRecordImpl(Table)}
* can be created using {@link #RecordImpl(FieldProvider)}
*/
@Deprecated
public RecordImpl(FieldProvider fields, Configuration configuration) {

View File

@ -67,7 +67,8 @@ public class UpdatableRecordImpl<R extends TableRecord<R>> extends TableRecordIm
/**
* @deprecated - 1.6.4 [#789] - Create attached records using
* {@link Factory#newRecord(Table)} instead. Detached records
* can be created using {@link #TableRecordImpl(Table)}
* can be created using
* {@link #UpdatableRecordImpl(UpdatableTable)}
*/
@Deprecated
public UpdatableRecordImpl(UpdatableTable<R> table, Configuration configuration) {