public void stopAllActions() { for (AAction p : actions) p.stop(); actions.clear(); }
public void stopAction(AAction action) { if (action == null) return; action.stop(); }