KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > team > internal > ccvs > core > client > Editors


1 /*******************************************************************************
2  * Copyright (c) 2000, 2006 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * CSC - Intial implementation
10  * IBM Corporation - ongoing maintenance
11  *******************************************************************************/

12 package org.eclipse.team.internal.ccvs.core.client;
13
14
15 /**
16  *
17  * The editors command
18  *
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 JavaDoc 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
Popular Tags