public class Actions { Action a; void changeTo(Action a) { this.a=a;} void act() {a.act();} }