90c9fdf17368c75e7cee0a2f1924b4c133331cf7
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / ui / filters / NonJavaElementFilter.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.IJavaElement;
14
15 import org.eclipse.core.resources.IProject;
16 import org.eclipse.core.resources.IResource;
17 import org.eclipse.core.resources.IStorage;
18 import org.eclipse.jface.viewers.Viewer;
19 import org.eclipse.jface.viewers.ViewerFilter;
20
21 /**
22  * Filters out all non-Java elements.
23  */
24 public class NonJavaElementFilter extends ViewerFilter {
25
26         /**
27          * Returns the result of this filter, when applied to the given inputs.
28          * 
29          * @param inputs
30          *            the set of elements to
31          * @return Returns true if element should be included in filtered set
32          */
33         public boolean select(Viewer viewer, Object parent, Object element) {
34                 if (element instanceof IJavaElement)
35                         return true;
36
37                 if (element instanceof IResource) {
38                         IProject project = ((IResource) element).getProject();
39                         return project == null || !project.isOpen();
40                 }
41
42                 // Exclude all IStorage elements which are neither Java elements nor
43                 // resources
44                 if (element instanceof IStorage)
45                         return false;
46
47                 return true;
48         }
49 }