blob: 9111db3284268cfad960fae3934e5dd18a28257e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2014 Freescale Semiconductor 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:
* Serge Beauchamp (Freescale Semiconductor) - [252996] initial API and implementation
* IBM Corporation - ongoing implementation
*******************************************************************************/
package org.eclipse.ui.internal.ide.misc;
import org.eclipse.core.filesystem.IFileInfo;
import org.eclipse.core.resources.IContainer;
import org.eclipse.core.resources.filtermatchers.AbstractFileInfoMatcher;
import org.eclipse.core.resources.filtermatchers.CompoundFileInfoMatcher;
import org.eclipse.core.runtime.CoreException;
/**
* A Resource Filter Type Factory for supporting the NOT logical preposition
*/
public class NotFileInfoMatcher extends CompoundFileInfoMatcher {
@Override
public boolean matches(IContainer parent, IFileInfo fileInfo) throws CoreException {
for (AbstractFileInfoMatcher matcher : matchers) {
if (matcher.matches(parent, fileInfo))
return false;
}
return true;
}
}