KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > team > ui > ISharedImages


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  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.team.ui;
12
13 /**
14  * Images that are available for providers to re-use. They include
15  * common overlays and wizard images. A provider can use their own
16  * custom images, these shared images are only available for
17  * convenience.
18  *
19  * @see TeamImages
20  * @since 2.0
21  */

22 public interface ISharedImages {
23
24     /*====================================================================
25      * Constants defining overlays
26      *====================================================================*/

27
28     /**
29      * Overlay identifies a locally changed file.
30      */

31     public final String JavaDoc IMG_DIRTY_OVR = "ovr/dirty_ov.gif"; //$NON-NLS-1$
32

33     /**
34      * Overlay identified a version controlled file.
35      */

36     public final String JavaDoc IMG_CHECKEDIN_OVR = "ovr/version_controlled.gif"; //$NON-NLS-1$
37

38     /**
39      * Overlay identifies a checked-out file.
40      */

41     public final String JavaDoc IMG_CHECKEDOUT_OVR = "ovr/checkedout_ov.gif"; //$NON-NLS-1$
42

43     /**
44      * Overlay identifies a conflicting element.
45      */

46     public final String JavaDoc IMG_CONFLICT_OVR = "ovr/confchg_ov.gif"; //$NON-NLS-1$
47

48     /**
49      * Overlay identifies an error in the element.
50      */

51     public final String JavaDoc IMG_ERROR_OVR = "ovr/error_co.gif"; //$NON-NLS-1$
52

53     /**
54      * Overlay identifies an error in the element.
55      */

56     public final String JavaDoc IMG_WARNING_OVR = "ovr/warning_co.gif"; //$NON-NLS-1$
57

58     /**
59      * Overlay identifies an element that is being worked on (e.g. is busy).
60      */

61     public final String JavaDoc IMG_HOURGLASS_OVR = "ovr/waiting_ovr.gif"; //$NON-NLS-1$
62
}
63
Popular Tags