X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=support%2Fgeneral%2Fsrc%2Fmain%2Fjava%2Forg%2Fwamblee%2Fgeneral%2FObjectElem.java;h=66743a3af948f708c8293678f6933430afaea046;hb=4a575582a5c2999bd816b197d9cf274b4b3ddcd7;hp=dbc9fed8a40eb74d8ec00dc71fa09926d70ad4c9;hpb=7d3754ca3d757ef89241cdbd679f82941e64cfc6;p=utils diff --git a/support/general/src/main/java/org/wamblee/general/ObjectElem.java b/support/general/src/main/java/org/wamblee/general/ObjectElem.java index dbc9fed8..66743a3a 100644 --- a/support/general/src/main/java/org/wamblee/general/ObjectElem.java +++ b/support/general/src/main/java/org/wamblee/general/ObjectElem.java @@ -16,18 +16,20 @@ 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;