Added second MVC example. This time the view is registered as observer to the model and gets update notifications that way.

This commit is contained in:
Ilkka Seppala
2015-08-30 15:22:37 +03:00
parent da6d92d125
commit cd32e385e2
9 changed files with 253 additions and 0 deletions

View File

@ -0,0 +1,19 @@
package com.iluwatar.model.view.controller.with.observer;
import org.junit.Test;
import com.iluwatar.model.view.controller.with.observer.App;
/**
*
* Application test
*
*/
public class AppTest {
@Test
public void test() {
String[] args = {};
App.main(args);
}
}