Added filters to the PHp OutlinePage
[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 org.eclipse.jface.viewers.Viewer;
14 import org.eclipse.jface.viewers.ViewerFilter;
15 import net.sourceforge.phpdt.core.ICompilationUnit;
16 import net.sourceforge.phpdt.core.IPackageFragment;
17 import net.sourceforge.phpdt.core.JavaModelException;
18
19
20 /**
21  * Filters out all compilation units and class files elements.
22  */
23 public class JavaFileFilter  extends ViewerFilter {
24         
25         /**
26          * Returns the result of this filter, when applied to the
27          * given inputs.
28          *
29          * @param inputs the set of elements to 
30          * @return Returns true if element should be included in filtered set
31          */
32         public boolean select(Viewer viewer, Object parent, Object element) {
33                 if (element instanceof ICompilationUnit)
34                         return false;
35 //              if (element instanceof IClassFile)
36 //                      return false;
37                         
38 //              if (element instanceof IPackageFragment)
39 //                      try {
40 //                              return ((IPackageFragment)element).getNonJavaResources().length > 0;
41 //                      } catch (JavaModelException ex) {
42 //                              return true;
43 //                      }
44                 return true;                    
45         }
46 }