1 /*
2  * Created : 2004/Apr/30
3  *
4  * Azureus - a Java Bittorrent client
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details ( see the LICENSE file ).
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20 
21 package org.gudy.azureus2.plugins.ui.tables;
22 
23 /** A listener that triggers when a cell's tooltip is about to be
24  * displayed or removed
25  *
26  * @author TuxPaper
27  */
28 public interface TableCellToolTipListener {
29   /** triggered when a cell's tooltip is about to be displayed.
30    *
31    * @param cell TableCell which the tooltip will be displayed for
32    */
cellHover(TableCell cell)33   void cellHover(TableCell cell);
34 
35   /** triggered when a cell's tooltip is about to be removed.
36    *
37    * @param cell TableCell which the tooltip will be removed
38    */
cellHoverComplete(TableCell cell)39   void cellHoverComplete(TableCell cell);
40 }
41