How can I implement an interface AND extend a class to the same class?
This doesn't seem to work (the interface is not implemented at all):
public class StrongChecker extends BasicChecker implements Checker {
This doesn't work either (the interface is not implemented at all):
public class StrongChecker extends BasicChecker {
And this gives me an error:
public class StrongChecker implements Checker extends BasicChecker {
Thanks for your help !
There is nothing wrong with:
Of course, your
StrongChecker
class has to implement all the methods ofChecker
(or inherit implementations fromBasicChecker
), or the code won't compile.