blob: 951422be96b365eb27e9a999f83d23f733a10d15 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2015 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;
/**
* Represents criteria definition contribution
*
* @since 3.5
*/
public interface ICriteriaDefinitionContribution {
/**
* Returns a unique identifier for this criteria definition.
*
* @return the contribution's unique identifier
*/
public String getId();
/**
* Returns this contributions criteria definition.
*
* @return the criteria definition data for this contribution
*/
public ICriteriaDefinition getCriteriaDefinition();
/**
* Returns the locale for this contribution.
*
* @return the contribution's locale
*/
public String getLocale();
}