blob: a8e965d05e286691cc598f7c59ccb6f86052ca50 [file] [log] [blame]
/*******************************************************************************
* 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);
}