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
9 * IBM Corporation - initial API and implementation
10 *******************************************************************************/
11 package net.sourceforge.phpdt.internal.ui.filters;
13 import org.eclipse.core.resources.IProject;
14 import org.eclipse.core.resources.IResource;
15 import org.eclipse.core.resources.IStorage;
17 import org.eclipse.jface.viewers.Viewer;
18 import org.eclipse.jface.viewers.ViewerFilter;
20 import net.sourceforge.phpdt.core.IJavaElement;
24 * Filters out all non-Java elements.
26 public class NonJavaElementFilter extends ViewerFilter {
29 * Returns the result of this filter, when applied to the
32 * @param inputs the set of elements to
33 * @return Returns true if element should be included in filtered set
35 public boolean select(Viewer viewer, Object parent, Object element) {
36 if (element instanceof IJavaElement)
39 if (element instanceof IResource) {
40 IProject project= ((IResource)element).getProject();
41 return project == null || !project.isOpen();
44 // Exclude all IStorage elements which are neither Java elements nor resources
45 if (element instanceof IStorage)