Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to achieve something like this: define an abstract method

public abstract void registerError(*any subclass of an ErrorVO or ErrorVO e);

and in subclass of actual implementation method:

public void registerError(ASubclassOfErrorVO e);

Thanks a lot for your help!

share|improve this question
1  
Usually, just 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

2 Answers

up vote 5 down vote accepted

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.

share|improve this answer
public abstract class A <T extends ErrorVO> {
    public abstract void register(T e);
}

public class B extends A<SubclassOfErrorVO> {
    @Override
    public void register(SubclassOfErrorVOe e) {
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.