KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > openbravo > translate > DirFilter


1 /*
2  *************************************************************************
3  * The contents of this file are subject to the Openbravo Public License
4  * Version 1.0 (the "License"), being the Mozilla Public License
5  * Version 1.1 with a permitted attribution clause; you may not use this
6  * file except in compliance with the License. You may obtain a copy of
7  * the License at http://www.openbravo.com/legal/license.html
8  * Software distributed under the License is distributed on an "AS IS"
9  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
10  * License for the specific language governing rights and limitations
11  * under the License.
12  * The Original Code is Openbravo ERP.
13  * The Initial Developer of the Original Code is Openbravo SL
14  * All portions are Copyright (C) 2001-2006 Openbravo SL
15  * All Rights Reserved.
16  * Contributor(s): ______________________________________.
17  ************************************************************************
18 */

19 package org.openbravo.translate;
20
21 import java.io.FilenameFilter JavaDoc;
22 import java.io.File JavaDoc;
23
24 public class DirFilter implements FilenameFilter JavaDoc {
25   String JavaDoc afn;
26   DirFilter(String JavaDoc afn) {
27     this.afn = afn;
28   }
29
30   public boolean accept(File JavaDoc dir, String JavaDoc name) {
31     boolean boolReturn;
32     // obtain the name to compare it only with the file name and not with the whole path
33
String JavaDoc f = new File JavaDoc(name).getName();
34     // return true if it matches the filter or if it's a directory
35
boolReturn = f.indexOf(afn, f.length() - afn.length()) != -1 || new File JavaDoc(dir,name).isDirectory();
36     return boolReturn;
37   }
38 }
39
Popular Tags