With default methods now added to Java 8, is there any way to create a default constructor?
I\'ve tried:
public interface KadContent { publ
No, this is not possible.
You may want to use an abstract class if you want implementations have a "default constructor".