15161718192021222324
private Boolean timeToStop; public Executor(){ timeToStop = false; actions = new ArrayList<Action>(); actions.add(new MoveAction()); actions.add(new StopAction()); actions.add(new BumperReleasedAction()); actions.add(new ButtonPressedAction()); }