I need to implement an interface (...ResultSet...) having hundreds of methods.
For now, I'm going to implement only a subset of these methods, throwing a ...NotImplementedError... for the others....In Java I found two solutions:...Create an abstract clas...