blob: e33f34218b09afab27d89ac3e161e01b9fde80e9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2002 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v0.5
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v05.html
*
* Contributors:
* IBM - Initial API and implementation
******************************************************************************/
package org.eclipse.team.internal.ccvs.core.client;
import org.eclipse.team.internal.ccvs.core.client.Command.LocalOption;
public class Log extends AbstractMessageCommand {
/*** Local options: specific to log ***/
public static LocalOption makeRevisionOption(String revision) {
return new LocalOption("-r" + revision, null); //$NON-NLS-1$
}
protected Log() { }
protected String getRequestId() {
return "log"; //$NON-NLS-1$
}
}