How can I write a method and force the subclasses to override this method. In Eclipse it should show in the Quick-Fix Dialog: "Add unimplemented methods".

Thanks

link|improve this question
feedback

4 Answers

up vote 3 down vote accepted

How can I write a method and force the subclasses to override this method.

Declare the method as abstract:

Eclipse will give you the "Add unimplemented methods"-option for all (unimplemented) abstract methods and interface methods.

link|improve this answer
feedback

Just declare the method as abstract in the base class. All children classes will then be forced to implement it. Alternatively you could also use an interface instead of a concrete class, which is simply an agreement that the methods defined will be implemented. Either one is fine, it depends on your needs.

link|improve this answer
feedback

You can do that by making the method abstract (not providing a default implementation).

link|improve this answer
feedback

Declare the method as abstract.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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