Comments for observer example.

This commit is contained in:
Ilkka Seppala
2014-08-31 11:17:21 +03:00
parent 8ddcdac33e
commit 3bc005f4b7
3 changed files with 18 additions and 0 deletions

View File

@@ -1,5 +1,12 @@
package com.iluwatar;
/**
*
* Observer pattern defines one-to-many relationship
* between objects. The target object sends change
* notifications to its registered observers.
*
*/
public class App
{
public static void main( String[] args )