001    package org.springframework.richclient.components;
002    
003    /**
004     * Interface that enables a component to set the focus on a default
005     * component
006     *
007     * @author Jan Hoskens
008     */
009    public interface Focussable
010    {
011        /**
012         * Set the focus on a default component
013         *
014         * On implementation, remember to use EventQueue.invokeLater(Runnable).
015         *
016         * @see java.awt.EventQueue#invokeLater(java.lang.Runnable)
017         */
018        public void grabFocus();
019    }
020