001package headfirst.combined.djview;
002
003public interface ControllerInterface {
004        void start();
005        void stop();
006        void increaseBPM();
007        void decreaseBPM();
008        void setBPM(int bpm);
009}