001    package controller;
002    
003    import java.awt.*;
004    
005    /**
006     * Adapter to connect the edit controls and the model.
007     *
008     * @author Mathias Ricken
009     */
010    public interface IEditAdapter {
011        /**
012         * Return name of current fish class.
013         *
014         * @return name of current fish class
015         */
016        String getCurrentFish();
017    
018        /**
019         * Return current color.
020         *
021         * @return current color
022         */
023        Color getCurrentColor();
024    }