interfacer
interfacer copied to clipboard
Add support for 'default' methods in interfaces
It appears Interfacer cannot match an interface if it has default methods:
public interface CustomMessage {
Context getContext();
default boolean isRepublished() {
return getContext().getRepublishCount() > 0;
}
}
It would have been a neat way to "inject" code into auto-generated classes.