blob: 0f1e3da437f6786a89690cdd446d34a23d35af01 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2008 Tasktop Technologies 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:
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.internal.team.ui;
import org.eclipse.core.resources.IResource;
/**
* No longer used.
*
* @author Mik Kersten
*/
@Deprecated
public class AbstractCommitWorkflowProvider {
/**
* Determines if the team provider manages at least one of the resources and at least one of the resources has an
* 'outgoing' state (locally changed). If this method returns <code>true</code>, the team provider may be later
* asked to {@link #commit} them. The set of resources may contain resources from projects that are not managed by
* your provider or not managed at all.
*
* @param resources
* @return <code>true</code> if the team provider manages at least one of the resources or <code>false</code>
* otherwise.
*/
public boolean hasOutgoingChanges(IResource[] resources) {
return false;
}
/**
* Asks the team provider to commit a set of resources that may be managed by the team provider. It is up to the
* team provider to only operate on resources that are being managed by it. The set of resources may contain
* resources from projects that are not managed by your provider or not managed at all.
*
* @param resources
* Set of resources that need to be committed
*/
public void commit(IResource[] resources) {
}
}