Interface Segregation Principle: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
 
Line 8: Line 8:


=Overview=
=Overview=
Clients should not be forced to implement interfaces they don't use. Instead of one large interface many small interfaces are preferred based on groups of methods, each one serving one submodule.

Latest revision as of 22:41, 3 April 2018

External

Internal

Overview

Clients should not be forced to implement interfaces they don't use. Instead of one large interface many small interfaces are preferred based on groups of methods, each one serving one submodule.