The usage of Adapter patttern in the java.awt.event package looks confusing to me. On the first hand it seems a clear violation of Interface Segregation Principle ( ISP ).
Like the MouseMotionAdapter class implements MouseMotionListener but provide 'NIL' implementation for both the overridden methods.
This is precisely what ISP violation is all about ? Going by ISP, MouseMotionListener would be rather split into two separate interfaces, one each for moseDragged and moveMoved behaviour ?
Perhaps splitting interfaces in this way would spiral the number of interfaces and also would make the coding more inelegant as each implementing classes would require to implement large number of interfaces.
Just need some clarification if my arguments are justified ?