1 /*******************************************************************************2 * Copyright (c) 2000, 2006 IBM Corporation and others.3 * All rights reserved. This program and the accompanying materials4 * are made available under the terms of the Eclipse Public License v1.05 * which accompanies this distribution, and is available at6 * http://www.eclipse.org/legal/epl-v10.html7 *8 * Contributors:9 * CSC - Intial implementation10 * IBM Corporation - ongoing maintenance11 *******************************************************************************/12 package org.eclipse.team.internal.ccvs.core.client;13 14 15 /**16 * 17 * The editors command18 *19 * @author <a HREF="mailto:kohlwes@gmx.net">Gregor Kohlwes</a>20 */21 public class Editors extends AbstractMessageCommand {22 23 /**24 * @see org.eclipse.team.internal.ccvs.core.client.Request#getRequestId()25 */26 protected String getRequestId() {27 return "editors"; //$NON-NLS-1$28 }29 30 /* (non-Javadoc)31 * @see org.eclipse.team.internal.ccvs.core.client.Command#isWorkspaceModification()32 */33 protected boolean isWorkspaceModification() {34 return false;35 }36 37 }38