KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > gjt > sp > jedit > search > HyperSearchFolderNode


1 /*
2  * HyperSearchFolderNode - HyperSearch Folder Tree Node
3  * :tabSize=8:indentSize=8:noTabs=false:
4  * :folding=explicit:collapseFolds=1:
5  *
6  * Copyright (C) 2005 Slava Pestov
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License
10  * as published by the Free Software Foundation; either version 2
11  * of the License, or any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21  */

22 package org.gjt.sp.jedit.search;
23
24 import java.io.File JavaDoc;
25
26 public class HyperSearchFolderNode
27 {
28     private File JavaDoc nodeFile;
29     private boolean showFullPath;
30     private static String JavaDoc fileSep = System.getProperty("file.separator");
31     static
32     {
33         if (fileSep.equals("\\"))
34             fileSep = "\\\\";
35     }
36     
37     public File JavaDoc getNodeFile() {
38         return nodeFile;
39     }
40     
41     public HyperSearchFolderNode(File JavaDoc nodeFile, boolean showFullPath) {
42         this.nodeFile = nodeFile;
43         this.showFullPath = showFullPath;
44     }
45     
46     public String JavaDoc toString() {
47         if (showFullPath)
48             return nodeFile.getAbsolutePath();
49         String JavaDoc paths[] = nodeFile.getAbsolutePath().split(fileSep);
50         return paths[paths.length - 1];
51         
52     }
53 }
54
Popular Tags