blob: 3fd2596f95701285a0c7866043610db0de36d507 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 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.ccvs.ui.mappings;
import org.eclipse.team.internal.ccvs.ui.CVSUIPlugin;
import org.eclipse.team.internal.ccvs.ui.ICVSUIConstants;
import org.eclipse.team.internal.ui.synchronize.ChangeSetCapability;
import org.eclipse.team.ui.synchronize.ISynchronizePageConfiguration;
public abstract class ModelParticipantChangeSetCapability extends ChangeSetCapability {
@Override
public boolean enableChangeSetsByDefault() {
return CVSUIPlugin.getPlugin().getPreferenceStore().getBoolean(ICVSUIConstants.PREF_COMMIT_SET_DEFAULT_ENABLEMENT);
}
@Override
public boolean supportsCheckedInChangeSets() {
return true;
}
@Override
public boolean enableCheckedInChangeSetsFor(ISynchronizePageConfiguration configuration) {
return supportsCheckedInChangeSets() &&
configuration.getMode() != ISynchronizePageConfiguration.OUTGOING_MODE;
}
public abstract CheckedInChangeSetCollector createCheckedInChangeSetCollector(ISynchronizePageConfiguration configuration);
}