blob: d45f11f21e229687de3520c57ab6f41d64f78768 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2019 Pivotal, Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Pivotal, Inc. - initial API and implementation
*******************************************************************************/
package org.eclipse.text.quicksearch.internal.core.pathmatch;
import org.eclipse.core.resources.IResource;
public interface ResourceMatcher {
boolean matches(IResource resource);
}