Files
java-design-patterns/template-method/src/main/java/com/iluwatar/templatemethod/HitAndRunMethod.java
T
2015-08-21 23:19:55 +03:00

26 lines
498 B
Java

package com.iluwatar.templatemethod;
/**
*
* HitAndRunMethod implementation of {@link StealingMethod}.
*
*/
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!");
}
}