001    package view;
002    
003    /**
004     * Adapter to connect the SimToolbar and the main view.
005     *
006     * @author Mathias Ricken
007     */
008    public interface IRunIdleAdapter {
009        /**
010         * Set run state.
011         */
012        void setRunState();
013    
014        /**
015         * Set idle state.
016         */
017        void setIdleState();
018    }