You can use generics in the declaration of the classes like this:
static abstract class Parent<T extends ErrorVO> {
public abstract void registerError(T e);
}
static class Child extends Parent<ASubclassOfErrorVO> {
@Override
public void registerError(ASubclassOfErrorVO e) {
}
}
the <T extends errorVO> in a defines T as an class extending errorVO. The reason this won't work just with method declarations is that you could have many methods in the subclass that could potentially override the parent's method, only by declaring the type T at the class level does the compiler know which method is being overridden.
void registerError(ErrorVO e)is enough. (You'll need to implement the generic method in your actual implementation anyway.) – Vlad Jul 5 '12 at 13:52