Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3acb8a1b0599bf12de7dfd4f9dd97e47fbfd8dac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*******************************************************************************
 * Copyright (c) 2006 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.team.internal.ccvs.ui;

import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.team.core.subscribers.Subscriber;
import org.eclipse.team.ui.mapping.*;
import org.eclipse.team.ui.synchronize.SubscriberTeamStateProvider;

public class CVSTeamStateProvider extends SubscriberTeamStateProvider {

	public CVSTeamStateProvider(Subscriber subscriber) {
		super(subscriber);
	}

	public ITeamStateDescription getStateDescription(Object element, final int requestedStateMask, String[] properties, IProgressMonitor monitor) throws CoreException {
		if (properties != null && properties.length == 0) {
			return new CVSTeamStateDescription(getSynchronizationState(element, requestedStateMask, monitor));
		}
		CVSDecoration d = CVSLightweightDecorator.decorate(element, new SynchronizationStateTester() {
			public int getState(Object element, int stateMask, IProgressMonitor monitor) throws CoreException {
				if (requestedStateMask != USE_DECORATED_STATE_MASK) {
					stateMask = requestedStateMask & stateMask;
				}
				return getSynchronizationState(element, requestedStateMask & stateMask, monitor);
			}
		});
		return d.asTeamStateDescription(properties);
	}
}

Back to the top