Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a8e965d05e286691cc598f7c59ccb6f86052ca50 (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
/*******************************************************************************
 * Copyright (c) 2000, 2005 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.help.ui;

import org.eclipse.jface.preference.IPreferencePage;

/**
 * Preference pages that are used for editing help search scope settings should
 * implement this interface.
 *
 * @since 3.1
 */
public interface ISearchScopePage extends IPreferencePage {
	/**
	 * Initializes the search scope page.
	 *
	 * @param ed
	 *            the descriptor of the engine associated with this page
	 * @param scopeSetName
	 *            the name of the current scope set that is used to group data
	 *            shown in this page
	 */
	void init(IEngineDescriptor ed, String scopeSetName);
}

Back to the top