(no commit message)
[utils] / support / src / org / wamblee / persistence / Persistent.java
index cd56ca4cd2354ef0a1367c28d9d1bb4972671fe5..57faf95e16694de8a9827d6763670e225e2f9c24 100644 (file)
@@ -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); 
 }