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
Typically, you don't declare the interface, or its methods, as abstract. They are implicitly.
The methods are also public, so you can skip that also. :-)