So I was looking over some Java code and stumbled upon:
List extends SomeObject> l;
basically this list accepts all objects that ar
As the first answer,
must contains Object that inherit from SomeObject, not some direct SomeObject.