equals() has been implemented in DvParagraph now.

Cheers,
Rong

babisr at yahoo.com wrote:
> The current implementation of DvParagraph (rev. 27)
> does not implement "equals(Object): boolean" method.
> Because all DataValue's are implemented as immutable
> transfer object, the absence of the method causes
> problems with frameworks that manipulate beans (for
> instance Hibernate, JAXB etc).
>
> A sample implementation could be:
>
> public boolean equals(Object object) {
>   if (this == object) {
>     return true;
>   }
>   if ((null == object) ||
>       !(object instanceof DvParagraph)) {
>     return false;
>   }
>   final DvParagraph other = (DvParagraph) object;
>   if ((null != items)? 
>         !items.equals(other.items) : 
>         (null != other.items)) {
>      return false;
>   }
>   return true;
> }
>
>
>
>
>       
>
>       
>               
> ___________________________________________________________ 
> ????????
??
 Yahoo!; 
> ???
?????
 ?? 
????????? ???????? (spam); ?? Yahoo! Mail 
> ??????
? ??? ?????
?? ????? ?????? ???? ??? 
?????????? 
> ???????? http://login.yahoo.com/config/mail?.intl=gr 
>
>   


Reply via email to