KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > internal > console > IInternalConsoleConstants


1 /*******************************************************************************
2  * Copyright (c) 2000, 2005 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.ui.internal.console;
12
13 public interface IInternalConsoleConstants {
14     
15     // tool images
16
public static final String JavaDoc IMG_LCL_PIN = "IMG_LCL_PIN"; //$NON-NLS-1$
17
public static final String JavaDoc IMG_LCL_LOCK = "IMG_LCL_LOCK"; //$NON-NLS-1$
18

19     // disabled local tool images
20
public static final String JavaDoc IMG_DLCL_PIN = "IMG_DLCL_PIN"; //$NON-NLS-1$
21
public static final String JavaDoc IMG_DLCL_CLEAR= "IMG_DLCL_CLEAR"; //$NON-NLS-1$
22
public static final String JavaDoc IMG_DLCL_LOCK = "IMG_DLCL_LOCK"; //$NON-NLS-1$
23
public static final String JavaDoc IMG_DLCL_CLOSE = "IMG_DLCL_CLOSE"; //$NON-NLS-1$
24

25     // enabled local tool images
26
public static final String JavaDoc IMG_ELCL_PIN = "IMG_ELCL_PIN"; //$NON-NLS-1$
27
public static final String JavaDoc IMG_ELCL_CLEAR= "IMG_ELCL_CLEAR"; //$NON-NLS-1$
28
public static final String JavaDoc IMG_ELCL_LOCK = "IMG_ELCL_LOCK"; //$NON-NLS-1$
29
public static final String JavaDoc IMG_ELCL_CLOSE = "IMG_ELCL_CLOSE"; //$NON-NLS-1$
30
public static final String JavaDoc IMG_ELCL_NEW_CON = "IMG_ELCL_NEW_CON"; //$NON-NLS-1$
31
}
32
Popular Tags