Organized imports
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / ui / filters / JavaFileFilter.java
1 /*******************************************************************************
2  * Copyright (c) 2000, 2004 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials 
4  * are made available under the terms of the Common Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/cpl-v10.html
7  * 
8  * Contributors:
9  *     IBM Corporation - initial API and implementation
10  *******************************************************************************/
11 package net.sourceforge.phpdt.internal.ui.filters;
12
13 import net.sourceforge.phpdt.core.ICompilationUnit;
14
15 import org.eclipse.jface.viewers.Viewer;
16 import org.eclipse.jface.viewers.ViewerFilter;
17
18
19 /**
20  * Filters out all compilation units and class files elements.
21  */
22 public class JavaFileFilter  extends ViewerFilter {
23         
24         /**
25          * Returns the result of this filter, when applied to the
26          * given inputs.
27          *
28          * @param inputs the set of elements to 
29          * @return Returns true if element should be included in filtered set
30          */
31         public boolean select(Viewer viewer, Object parent, Object element) {
32                 if (element instanceof ICompilationUnit)
33                         return false;
34 //              if (element instanceof IClassFile)
35 //                      return false;
36                         
37 //              if (element instanceof IPackageFragment)
38 //                      try {
39 //                              return ((IPackageFragment)element).getNonJavaResources().length > 0;
40 //                      } catch (JavaModelException ex) {
41 //                              return true;
42 //                      }
43                 return true;                    
44         }
45 }