Skip to main content
summaryrefslogtreecommitdiffstats
blob: 3130c8691f57c3c54d20034341e7f91e9b769b39 (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
/*******************************************************************************
 * Copyright (c) 2010 SAP AG, Walldorf.
 * 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:
 *     SAP AG - initial API and implementation
 *******************************************************************************/
package org.eclipse.platform.discovery.ui.api;


/**
 * Interface for contributing customizations to the search console view
 * 
 * @author Danail Branekov
 */
public interface ISearchConsoleCustomization extends IGenericViewCustomization
{
	/**
	 * Check whether this customization is relevant to a search provider
	 * 
	 * @param searchProviderId
	 *            the ID of the search provider
	 * @return true in case this customization is relevant for the search provider with the id specified; false otherwise
	 */
	public boolean acceptSearchProvider(final String searchProviderId);
}

Back to the top