Completed MVC example code.

This commit is contained in:
Ilkka Seppala
2015-05-02 23:37:26 +03:00
parent c9bf6819e1
commit 3bcca7102c
7 changed files with 154 additions and 1 deletions

View File

@ -0,0 +1,8 @@
package com.iluwatar;
public class GiantView {
public void displayGiant(GiantModel giant) {
System.out.println(giant);
}
}