X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=support%2Fsrc%2Forg%2Fwamblee%2Fpersistence%2FPersistent.java;h=57faf95e16694de8a9827d6763670e225e2f9c24;hb=098fb64daea94942558b8bcbde992e8ef690b759;hp=cd56ca4cd2354ef0a1367c28d9d1bb4972671fe5;hpb=caa126385642ffc57478e928ab871bc09c53e993;p=utils diff --git a/support/src/org/wamblee/persistence/Persistent.java b/support/src/org/wamblee/persistence/Persistent.java index cd56ca4c..57faf95e 100644 --- a/support/src/org/wamblee/persistence/Persistent.java +++ b/support/src/org/wamblee/persistence/Persistent.java @@ -30,25 +30,29 @@ public interface Persistent { /** * Gets the primary key. - * @return Primary key. + * @return Primary key. + * @see #setPrimaryKey(Serializable) */ Serializable getPrimaryKey(); /** * Sets the primary key. - * @param aKey Primary key. + * @param aKey Primary key. + * @see #getPrimaryKey() */ void setPrimaryKey(Serializable aKey); /** * Gets the version. * @return Version. + * @see #setPersistedVersion(int) */ int getPersistedVersion(); /** * Sets the version. * @param aVersion Version. + * @see #getPersistedVersion() */ void setPersistedVersion(int aVersion); }