Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 27d27e0074985ba6255f034ba2db75a4f7ffa2ed (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) 2000, 2004 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials 
 * are made available under the terms of the Common Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/cpl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.team.tests.ui.synchronize;

import org.eclipse.core.resources.IResource;
import org.eclipse.team.core.TeamException;
import org.eclipse.team.core.synchronize.SyncInfo;

public class TestSyncInfo extends SyncInfo {

	private int kind;
	
	public TestSyncInfo(IResource resource, int kind) throws TeamException {
		super(resource, null, null, null);
		this.kind = kind;
	}
	
	/* (non-Javadoc)
	 * @see org.eclipse.team.core.subscribers.SyncInfo#calculateKind()
	 */
	protected int calculateKind() throws TeamException {
		return this.kind;
	}
	
	/* (non-Javadoc)
	 * @see org.eclipse.team.core.subscribers.SyncInfo#getKind()
	 */
	public int getKind() {
		return kind;
	}
}

Back to the top