KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > team > internal > ccvs > ui > CVSTeamStateDescription


1 /*******************************************************************************
2  * Copyright (c) 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  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.team.internal.ccvs.ui;
12
13 import org.eclipse.team.ui.synchronize.TeamStateDescription;
14
15 /**
16  * A state description for the CVS decorations. We only need to
17  * enumerate the states that can be associated with model
18  * elements that don't have a one-to-one mapping to resources
19  */

20 public class CVSTeamStateDescription extends TeamStateDescription {
21
22     /**
23      * Property representing the image overlay
24      */

25     public static final String JavaDoc PROP_RESOURCE_STATE = "resourceState"; //$NON-NLS-1$
26
public static final String JavaDoc PROP_TAG = "tag"; //$NON-NLS-1$
27

28     public CVSTeamStateDescription(int state) {
29         super(state);
30     }
31 }
32
Popular Tags