views:

152

answers:

2

What is the equivalent of C# CollectionBase in Java?

+6  A: 

AbstractCollection is probably the closest; but since CollectionBase implements IList, you might want AbstractList instead.

erickson
A: 

collection interface

Victor