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
There is no point of declaring interface to be abstract. As the methods in the interface are abstract only.. One more thing abstract class can have both concrete and abstract methods but in the interface there should be only abstract methods.