refactory: added UI removed from core plugin.
[phpeclipse.git] / net.sourceforge.phpeclipse.ui / 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  * Filters out all compilation units and class files elements.
20  */
21 public class JavaFileFilter extends ViewerFilter {
22
23         /**
24          * Returns the result of this filter, when applied to the given inputs.
25          * 
26          * @param inputs
27          *            the set of elements to
28          * @return Returns true if element should be included in filtered set
29          */
30         public boolean select(Viewer viewer, Object parent, Object element) {
31                 if (element instanceof ICompilationUnit)
32                         return false;
33                 // if (element instanceof IClassFile)
34                 // return false;
35
36                 // if (element instanceof IPackageFragment)
37                 // try {
38                 // return ((IPackageFragment)element).getNonJavaResources().length > 0;
39                 // } catch (JavaModelException ex) {
40                 // return true;
41                 // }
42                 return true;
43         }
44 }