Observer pattern
1. Usage Pattern Observer – define relationship “one to many” such way that when state of object change all dependent objects notified/updated automatically. Pattern Observer encapsulate main component in Subject abstraction and dependent objects in Observer hierarchy. Observer used IN MVC as View part This pattern used widely in User interfaces. 2. UML class diagram […]