Really annoying when I want to implement an interface for a simple WindowListener but the only way to get the job done is to implement all the methods just to leave all but one bodyless. Looks really ugly and avoidable..
Is there some kind of design pattern that can avoid bodyless implementations in this type of case?
I tried the Strategy/Policy pattern but I just end up with the same bodyless methods, except in more OOP way.