Files
java-design-patterns/template-method/src/main/java/com/iluwatar/templatemethod/SubtleMethod.java
2015-11-01 21:29:13 -05:00

25 lines
541 B
Java

package com.iluwatar.templatemethod;
/**
*
* SubtleMethod implementation of {@link StealingMethod}.
*
*/
public class SubtleMethod extends StealingMethod {
@Override
protected String pickTarget() {
return "shop keeper";
}
@Override
protected void confuseTarget(String target) {
System.out.println("Approach the " + target + " with tears running and hug him!");
}
@Override
protected void stealTheItem(String target) {
System.out.println("While in close contact grab the " + target + "'s wallet.");
}
}