Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Swanson2003-09-12 18:00:56 +0000
committerDarin Swanson2003-09-12 18:00:56 +0000
commitda3fa8a02b788da7915ffe18135656fca89ad72d (patch)
tree08293cfd76ae5066ea6f19b7646fac7fd5764814 /org.eclipse.ui.console/src/org/eclipse/ui/internal/console/IInternalConsoleConstants.java
parent7934f747b45a68c2dfe5304311b6126bbff6748e (diff)
downloadeclipse.platform.debug-da3fa8a02b788da7915ffe18135656fca89ad72d.tar.gz
eclipse.platform.debug-da3fa8a02b788da7915ffe18135656fca89ad72d.tar.xz
eclipse.platform.debug-da3fa8a02b788da7915ffe18135656fca89ad72d.zip
Bug 37263 - Support for generic console
Diffstat (limited to 'org.eclipse.ui.console/src/org/eclipse/ui/internal/console/IInternalConsoleConstants.java')
-rw-r--r--org.eclipse.ui.console/src/org/eclipse/ui/internal/console/IInternalConsoleConstants.java25
1 files changed, 25 insertions, 0 deletions
diff --git a/org.eclipse.ui.console/src/org/eclipse/ui/internal/console/IInternalConsoleConstants.java b/org.eclipse.ui.console/src/org/eclipse/ui/internal/console/IInternalConsoleConstants.java
new file mode 100644
index 000000000..5796bf8c6
--- /dev/null
+++ b/org.eclipse.ui.console/src/org/eclipse/ui/internal/console/IInternalConsoleConstants.java
@@ -0,0 +1,25 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2003 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Common Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.ui.internal.console;
+
+public interface IInternalConsoleConstants {
+
+ // tool images
+ public static final String IMG_LCL_PIN = "IMG_LCL_PIN"; //$NON-NLS-1$
+
+ // disabled local tool images
+ public static final String IMG_DLCL_PIN = "IMG_DLCL_PIN"; //$NON-NLS-1$
+ public static final String IMG_DLCL_CLEAR= "IMG_DLCL_CLEAR"; //$NON-NLS-1$
+
+ // enabled local tool images
+ public static final String IMG_ELCL_PIN = "IMG_ELCL_PIN"; //$NON-NLS-1$
+ public static final String IMG_ELCL_CLEAR= "IMG_ELCL_CLEAR"; //$NON-NLS-1$
+}

Back to the top