Let\'s say we have a base class:
public abstract class BaseFragment extends Fragment { ... protected abstract boolean postExec(); ... }
You could derive a new abstract class with the new abstract method from your base class. Derive concrete classes that should have the new method from this new class and others from the old base class.