> I am reading some information on generic (typed) collections and own
> created generic classes in Java 5. I have understood that in the new
> typed collections, the 'type' is only a compile time feature, it is
> stripped from the collections like ArrayList in the intermediate code.
Yes: `type erasure`.
> But if I generate my of generic typed class, is this information
> stripped aswell,
Yes.
Is that important to you?

Signature
Chris "electric hedgehog" Dollin
Nit-picking is best done among friends.
marcwentink@hotmail.com - 15 Mar 2007 12:21 GMT
> Is that important to you?
No, not really important, I was just curious.
Thank you for the information.