> Hi -
>
[quoted text clipped - 22 lines]
>
> Thanks in advance.
Try this:
class MyVector<T extends MyInterface> extends Vector<T> {
You have to use 'extends' rather than 'implements', even with interfaces.
This one got me the first time too.
Dan.

Signature
Daniel Dyer
http://www.footballpredictions.net
Brian - 22 Apr 2005 21:47 GMT
> Try this:
> class MyVector<T extends MyInterface> extends Vector<T> {
> You have to use 'extends' rather than 'implements', even with interfaces.
> This one got me the first time too.
> Dan.
That was it! Thanks Dan.