Skip to main content
summaryrefslogtreecommitdiffstats
blob: 7e67071b0bf75ab662689b9ed90230680c952954 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.eclipse.team.internal.ccvs.ui.actions;

/*
 * (c) Copyright IBM Corp. 2000, 2002.
 * All Rights Reserved.
 */
 
import org.eclipse.core.resources.IResource;
import org.eclipse.team.internal.ccvs.ui.sync.CVSSyncCompareInput;
import org.eclipse.team.internal.ui.sync.SyncCompareInput;

/**
 * Action for catchup/release in popup menus.
 */
public class SyncOutgoingAction extends SyncAction {
	protected SyncCompareInput getCompareInput(IResource[] resources) {
		return new CVSSyncCompareInput(resources, true);
	}
}

Back to the top