added template method sample

This commit is contained in:
Ilkka Seppala
2014-08-23 13:37:42 +03:00
parent 6157f22ea4
commit 23e2faeca2
7 changed files with 111 additions and 0 deletions
@@ -0,0 +1,20 @@
package com.iluwatar;
public class HitAndRunMethod extends StealingMethod {
@Override
protected String pickTarget() {
return "old goblin woman";
}
@Override
protected void confuseTarget(String target) {
System.out.println("Approach the " + target + " from behind.");
}
@Override
protected void stealTheItem(String target) {
System.out.println("Grab the handbag and run away fast!");
}
}