All the posts and topics that contain only an error report will be moved here after the error is corrected. This is to ensure that when users view a question in ETS Viewer, the "Discuss" button will not indicate the presence of a discussion that adds no value to the question.
MyI is a valid class that correctly implements interface I.
MyI in the code does not implement the interface... Although the code defines a method that has the same signature as the abstract method in the I interface.
If it did implement interface I it would need to change its access modifier from default to public since interface methods are implicitly public and abstract.