blob: 0540d4fa95b9943913a1455931e3a32cc817bd8d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.ui.filters;
import org.eclipse.core.resources.IProject;
import org.eclipse.team.core.RepositoryProvider;
import org.eclipse.jface.viewers.Viewer;
import org.eclipse.jface.viewers.ViewerFilter;
import org.eclipse.jdt.core.IJavaProject;
/**
* Filters non-shared projects and Java projects. Non-shared projects are
* projects that are not controlled by a team provider.
*
* @since 2.1
*/
public class NonSharedProjectFilter extends ViewerFilter {
/*
* @see ViewerFilter
*/
public boolean select(Viewer viewer, Object parent, Object element) {
if (element instanceof IProject)
return isSharedProject((IProject)element);
if (element instanceof IJavaProject)
return isSharedProject(((IJavaProject)element).getProject());
return true;
}
private boolean isSharedProject(IProject project) {
return !project.isAccessible() || RepositoryProvider.isShared(project);
}
}