blob: 082f863b6e3144d40ea24813c093a928ddec9aaf [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2007 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.ui.examples.filters;
import org.eclipse.jface.viewers.Viewer;
import org.eclipse.jface.viewers.ViewerFilter;
import org.eclipse.jdt.core.ICompilationUnit;
public class AFileFilter extends ViewerFilter {
public AFileFilter() {
// TODO Auto-generated constructor stub
}
@Override
public boolean select(Viewer viewer, Object parentElement, Object element) {
if (element instanceof ICompilationUnit) {
return !"A.java".equals(((ICompilationUnit) element).getElementName());
}
return true;
}
}