For questions about the Interface Segregation Principle (ISP) in object-oriented design, one of the SOLID principles enumerated by Robert C. Martin.
The Interface Segregation Principle (ISP) says that many client specific interfaces are better than one general purpose interface. Why is …
java oop solid-principles design-principles interface-segregation-principleHow does the SOLID "Interface Segregation Principle" differ from "Single Responsibility Principle"? The Wikipedia entry for SOLID says that ISP …
oop design-patterns solid-principles single-responsibility-principle interface-segregation-principleIs there a specific design pattern that describes the scenario where a non-abstract default implementation is provided that implements all …
design-patterns adapter solid-principles null-object-pattern interface-segregation-principle