Merge pull request #490 from iluwatar/DocumentUsages

#211 Document GoF usages from Java API
This commit is contained in:
Ilkka Seppälä
2016-09-03 14:14:13 +03:00
committed by GitHub
15 changed files with 64 additions and 12 deletions

View File

@ -5,7 +5,7 @@ folder: observer
permalink: /patterns/observer/
pumlid: FSkn4OGm30NHLg00hFow4KO3PcpP8tr1-pYwx6smQz5Suv2mkbp0y1-HyPlEWYlsSB7S5Q98kJSgDLu66ztyy7Q8brEtmO2OEZNs2Uhxl9u9GVv72cjfHAiV
categories: Behavioral
tags:
tags:
- Java
- Difficulty-Beginner
- Gang Of Four
@ -36,6 +36,8 @@ Use the Observer pattern in any of the following situations
## Real world examples
* [java.util.Observer](http://docs.oracle.com/javase/8/docs/api/java/util/Observer.html)
* [java.util.EventListener](http://docs.oracle.com/javase/8/docs/api/java/util/EventListener.html)
* [javax.servlet.http.HttpSessionBindingListener](http://docs.oracle.com/javaee/7/api/javax/servlet/http/HttpSessionBindingListener.html)
## Credits