14 lines
222 B
Java
14 lines
222 B
Java
package learn.simple_command;
|
|
|
|
public class Invoker {
|
|
private Command slot;
|
|
|
|
public void setSlot(Command slot) {
|
|
this.slot = slot;
|
|
}
|
|
|
|
public void buttonWasPushed() {
|
|
slot.execute();
|
|
}
|
|
}
|