1 /******************************************************************************* 2 * Copyright (c) 2000, 2005 IBM Corporation and others. 3 * All rights reserved. This program and the accompanying materials 4 * are made available under the terms of the Eclipse Public License v1.0 5 * which accompanies this distribution, and is available at 6 * http://www.eclipse.org/legal/epl-v10.html 7 * 8 * Contributors: 9 * IBM Corporation - initial API and implementation 10 *******************************************************************************/ 11 package org.eclipse.team.internal.ui.synchronize; 12 13 /** 14 * Interface that can appear of a synchronize participant if that participant supports 15 * change sets. This was not made API in 3.1 because it was felt that the API was not 16 * ready at that point. 17 */ 18 public interface IChangeSetProvider { 19 20 /** 21 * Return the change set capability for this participant or <code>null</code> 22 * if change sets are not supported. 23 * @return the change set capability for this participant 24 * @since 3.1 25 */ 26 public ChangeSetCapability getChangeSetCapability(); 27 } 28