Interface segregation principle
From CSSEMediaWiki
(Difference between revisions)
(adding interface segregation principle) |
m |
||
Line 1: | Line 1: | ||
− | Interface Segregation | + | Interface Segregation Principle says that clients should not be forced to depend upon interfaces that they do not use. This is to avoid [[Fat interfaces]] surfacing in the design. |
== Examples == | == Examples == |
Revision as of 02:42, 30 July 2008
Interface Segregation Principle says that clients should not be forced to depend upon interfaces that they do not use. This is to avoid Fat interfaces surfacing in the design.