With default methods now added to Java 8, is there any way to create a default constructor?
I\'ve tried:
public interface KadContent { publ
It does not make sense to provide an Constructor in an Interface.
Constructor
Interface
Check if it makes sense for you to provide a default initialize() method instead.
initialize()