What\'s point of declaring an interface as abstract? Same thing for an interface method. Is there a point to it?
eg.
public abstract interface Presen
The default behavior of an interface is essentially equivalent to what you have in your example. Defining it as abstract is just redundant.