Skip to main content
summaryrefslogtreecommitdiffstats
blob: 09d095d7f0e8cf32f00cc6ee4372f49a303639ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*******************************************************************************
 * Copyright (c) 2000, 2004 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials 
 * are made available under the terms of the Common Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/cpl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.search.ui;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
/**
 * Represents a particular search query (in a Java example, a query might
 * be "find all occurrences of 'foo' in workspace"). When it's run method is
 * called, the query places any results it finds in the
 * <code>ISearchResult</code> that can be accessed via getSearchResult().
 * Note that <code>getSearchResult</code> may be called at any time, even
 * before the <code>run()</code> method has been called. An empty search
 * result should be returned in that case.
 * <p>
 * Clients may implement this interface.
 * </p>
 * 
 * @since 3.0
 */
public interface ISearchQuery {
	/**
	 * This is the method that actually does the work, i.e. finds the results of
	 * the search query.
	 * 
	 * @param monitor the progress monitor to be used
	 * 
	 * @return the status after completion of the search job.
	 */
	IStatus run(IProgressMonitor monitor);
	/**
	 * Returns a user readable label for this query. This will be used, for
	 * example to set the <code>Job</code> name if this query is executed in
	 * the background. Note that progress notification (for example, the number
	 * of matches found) should be done via the progress monitor passed into the
	 * <code>run(IProgressMonitor)</code> method
	 * 
	 * @return the user readable label of this query
	 */
	String getLabel();
	/**
	 * Returns whether the query can be run more than once. Some queries may
	 * depend on transient information and return <code>false</code>.
	 * 
	 * @return whether this query can be run more than once
	 */
	boolean canRerun();
	/**
	 * Returns whether this query can be run in the background. Note that
	 * queries must do proper locking when they are run in the background (e.g.
	 * get the appropriate workspace locks).
	 * 
	 * @return whether this query can be run in the background
	 */
	boolean canRunInBackground();
	/**
	 * Returns the search result associated with this query. This method can be
	 * called before run is called.
	 * 
	 * @return this query's search result
	 */
	ISearchResult getSearchResult();
}

Back to the top