Type the project's Fixable interface
Type the project's Fixable interface
Answer
public interface Fixable { void fix(); void log(); }
No bodies, no access keywords needed — interface methods are implicitly public and abstract. Implementers must supply both fix() and log().