I would like to force SubClasses
to @Override
method from SuperClass
.
Method in SuperClass
can't be abstract
, cause I wanna provide some basic implementation.
Here is example of my code:
public abstract class GenericModel<T extends GenericModel> {
long id, counter;
public String methodToBeOverridenInSubClass(String name) {
// some basic implementation
// rest details will be provided by subclass
return name;
}
}
public class SubClass extends GenericModel<SubClass> {
@Override
public String methodToBeOverridenInSubClass(String name) {
switch (name) {
case "name": return "Real name";
default: super.methodToBeOverridenInSubClass(name);
}
}
}
This post is interesting: MustOverrideException and MethodNotOverridenException
Please give me some help
Maybe what your are looking for is resolved by Template method pattern. In which you create a parent class with one method implemented which describe a process that calls anothers methods (steps). These steps are abstract so they are implemented by a sub class.
Example from wikipedia: