(no commit message)
[utils] / support / general / src / main / java / org / wamblee / general / ObjectElem.java
index dbc9fed8a40eb74d8ec00dc71fa09926d70ad4c9..66743a3af948f708c8293678f6933430afaea046 100644 (file)
 package org.wamblee.general;
 
 /**
- * This class provided an equality operation based on the object reference
- * of the wrapped object. This is required because we cannto assume that the
- * equals operation has any meaning for different types of persistent
- * objects. This allows us to use the standard collection classes for
- * detecting cyclic dependences and avoiding recursion.
+ * This class provided an equality operation based on the object reference of
+ * the wrapped object. This is required because we cannto assume that the equals
+ * operation has any meaning for different types of persistent objects. This
+ * allows us to use the standard collection classes for detecting cyclic
+ * dependences and avoiding recursion.
  */
 public class ObjectElem {
     private Object object;
 
     /**
      * Constructs the wrapper.
-     * @param aObject Object.
+     * 
+     * @param aObject
+     *            Object.
      */
     public ObjectElem(Object aObject) {
         object = aObject;