I am a C# programmer and have agreed to help a fried doing Java homework.
In one example I want to create a class that extends a generic List. In C# this looks like
public class MyListClass : List<MyCustomType>
I have tried
public class MyListClass extends List<MyCustomType>
and get the error "no interface expected here". Well, I am not trying to use an interface... Any hints?

Listin Java is an interface. The equivalent in C# would be anIList. That is probably what's confusing you. – maba Oct 31 '12 at 6:49