View Javadoc

1   /*
2    *  XNap - A P2P framework and client.
3    *
4    *  See the file AUTHORS for copyright information.
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.
9    *
10   *  This program is distributed in the hope that it will be useful,
11   *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12   *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13   *  GNU General Public License for more details.
14   *
15   *  You should have received a copy of the GNU General Public License
16   *  along with this program; if not, write to the Free Software
17   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18   */
19  
20  package org.xnap.gui.tree;
21  
22  import java.awt.Component;
23  
24  import javax.swing.JTree;
25  import javax.swing.tree.DefaultTreeCellRenderer;
26  
27  import org.xnap.search.SearchResult;
28  
29  /***
30   * StringTreeCellRenderer renders strings for table cells and enables
31   * a tooltip text to show long strings.  
32   */
33  public class SearchResultCellRenderer extends DefaultTreeCellRenderer
34  {
35  
36      //--- Constant(s) ---
37  
38      //--- Constructor(s) ---
39  
40      public SearchResultCellRenderer() 
41      {
42      }
43  
44      //--- Method(s) ---
45  
46      public Component getTreeCellRendererComponent(JTree tree, Object value,
47  												  boolean sel,
48  												  boolean expanded,
49  												  boolean leaf, int row,
50  												  boolean hasFocus) {
51  		
52  		/* let's see how horribly this breaks... */
53  		//Component component = super.getTreeCellRendererComponent
54   		//	(tree, value, sel, expanded, leaf, row, hasFocus);
55  
56  		if (value instanceof SearchResult) {
57  			setText(((SearchResult)value).getFilename());
58  			setToolTipText(((SearchResult)value).getFilename());
59  		}
60  		else {
61  			setText("Results");
62  		}
63  
64  		return this;
65      }
66  
67  }