Release 1.6.4 - Corrected Javadoc
This commit is contained in:
parent
223104dd9f
commit
2cc273f1e2
@ -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;
|
||||
|
||||
|
||||
@ -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) {
|
||||
|
||||
@ -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) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user