(no commit message)
authorErik Brakkee <erik@brakkee.org>
Mon, 26 Jul 2010 17:20:29 +0000 (17:20 +0000)
committerErik Brakkee <erik@brakkee.org>
Mon, 26 Jul 2010 17:20:29 +0000 (17:20 +0000)
support/general/src/main/java/org/wamblee/persistence/Detachable.java

index 0d681d0c8e0b2bbbba0fea561f1c4a104bb673e5..ea5adfe6e222043928ee9c4279359951904f351b 100644 (file)
@@ -18,22 +18,23 @@ package org.wamblee.persistence;
 import java.io.Serializable;
 
 /**
- * Represents a detachable object. It represent a reference to a persistent object. 
- * The object is detachable in that the memory footprint can be reduced by not keeping 
- * a reference to the complete java object, but only to its identify in persistent 
- * storage. This is typically the primary key in a relational database. 
+ * Represents a detachable object. It represent a reference to a persistent
+ * object. The object is detachable in that the memory footprint can be reduced
+ * by not keeping a reference to the complete java object, but only to its
+ * identify in persistent storage. This is typically the primary key in a
+ * relational database.
  */
 public interface Detachable<T> extends Serializable {
-       
-       /** 
-        * Detaches the object. 
-        */
-       void detach(); 
-       
-       /**
-        * Gets the object, attaching it if needed.
-        * @return
-        */
-       T get(); 
+    /**
+     * Detaches the object.
+     */
+    void detach();
+
+    /**
+     * Gets the object, attaching it if needed.
+     * 
+     * @return
+     */
+    T get();
 
 }