blob: 8d3292da93a2c1f9b67b8c03e5b14848f3f83358 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2008 Tasktop Technologies and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* https://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
*
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.internal.context.core;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
/**
* @author Mik Kersten
*/
public interface IActiveSearchOperation {
public void addListener(IActiveSearchListener listener);
public void removeListener(IActiveSearchListener listener);
public IStatus run(IProgressMonitor monitor);
}