I have a class that is extending Java\'s ArrayList. I\'m currently using Java build 1.6.0_22-b04. Looks like this:
public class TokenSequence extends ArrayList&
Absolutely - use the @Override annotation, and ideally use the strongly typed signature:
@Override
@Override public void add(Token token) { ... }