added proxy sample

This commit is contained in:
Ilkka Seppala
2014-08-16 20:28:07 +03:00
parent 5cd611bf19
commit a9971dc38f
6 changed files with 84 additions and 0 deletions

View File

@ -0,0 +1,9 @@
package com.iluwatar;
public class WizardTower {
public void enter(Wizard wizard) {
System.out.println(wizard + " enters the tower.");
}
}