mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-24 10:25:17 +00:00
25 lines
512 B
Java
25 lines
512 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!");
|
|
}
|
|
}
|