blob: 5a5fc80636c65276b29866d05cb0f00dac3f371b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2008 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.corext.refactoring;
import org.eclipse.jdt.core.search.SearchMatch;
/**
* Interface for search requestors used in conjunction with {@link org.eclipse.jdt.internal.corext.refactoring.RefactoringSearchEngine2}.
*
* @since 3.1
*/
public interface IRefactoringSearchRequestor {
/**
* Can the search match be accepted?
*
* @param match the search match to test
* @return The accepted match, or <code>null</code> if not accepted
*/
public SearchMatch acceptSearchMatch(SearchMatch match);
}