Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b7744fcabd241481da33c081f9ed7d54c4de8308 (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
/*******************************************************************************
 * Copyright (c) 2000, 2003 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.internal.ccvs.core.client.listeners;
 
import org.eclipse.team.internal.ccvs.core.ICVSFolder;

public interface IStatusListener {
	
	public static final String FOLDER_REVISION = ""; //$NON-NLS-1$
	
	/**
	 * Provides access to the revision of a file through the use of the Status command.
	 * 
	 * @param commandRoot the root directory of the command
	 * @param path the absolute remote path of the resource including the repository root directory
	 * @param remoteRevision the remote revision of the file
	 */
	public void fileStatus(ICVSFolder commandRoot, String path, String remoteRevision);
}

Back to the top