
package uk.co.wingpath.gui;

/**
* Interface for providing a list of tooltips for use by {@link WSelector}.
*/
public interface ToolTips
{
    /**
    * Gets the tooltip for the specified selection index.
    * @param index the selection index.
    * @return the tooltip for the specified selection, or null if there is
    * no tooltip for the selection.
    */
    String getToolTip (int index);
}

