hi..
i have a wrapper class around a list implementation, each time someone
access the item in the list, it's wrapped with a class and given to
the user.
i want only to implement the methods hibernate uses the the others will
have an unsupportedOperation exception thrown.
Oliver Wong - 20 Jul 2006 18:12 GMT
> hi..
>
[quoted text clipped - 4 lines]
> i want only to implement the methods hibernate uses the the others will
> have an unsupportedOperation exception thrown.
If the issue is laziness, see
http://java.sun.com/j2se/1.5.0/docs/api/java/util/AbstractList.html
- Oliver