blob: d3fabe5f12b463dc1c14b8eeb6c8c3a01fa323c0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.team.internal.ui.synchronize;
/**
* Interface that can appear of a synchronize participant if that participant supports
* change sets. This was not made API in 3.1 because it was felt that the API was not
* ready at that point.
*/
public interface IChangeSetProvider {
/**
* Return the change set capability for this participant or <code>null</code>
* if change sets are not supported.
* @return the change set capability for this participant
* @since 3.1
*/
public ChangeSetCapability getChangeSetCapability();
}