2014-10-08 13:42:12 +01:00

24 lines
373 B
Java

package com.iluwatar;
/**
*
* Halfling thief uses StealingMethod to steal.
*
*/
public class HalflingThief {
private StealingMethod method;
public HalflingThief(StealingMethod method) {
this.method = method;
}
public void steal() {
method.steal();
}
public void changeMethod(StealingMethod method) {
this.method = method;
}
}