Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBogdan Gheorghe2006-09-18 03:38:10 +0000
committerBogdan Gheorghe2006-09-18 03:38:10 +0000
commit13d39894c0bdfd86a89a66832219953703c124ec (patch)
tree2cd85c6527071bc9fe818a8b367fa5c779a81b0d /bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/ICompareUIConstants.java
parente95112f5e94e6f9b376d2ca9345bc8fa672bee40 (diff)
downloadeclipse.platform.team-13d39894c0bdfd86a89a66832219953703c124ec.tar.gz
eclipse.platform.team-13d39894c0bdfd86a89a66832219953703c124ec.tar.xz
eclipse.platform.team-13d39894c0bdfd86a89a66832219953703c124ec.zip
Apply Patch Wizard Changesv200609172345
Diffstat (limited to 'bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/ICompareUIConstants.java')
-rw-r--r--bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/ICompareUIConstants.java21
1 files changed, 21 insertions, 0 deletions
diff --git a/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/ICompareUIConstants.java b/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/ICompareUIConstants.java
new file mode 100644
index 000000000..3e1777653
--- /dev/null
+++ b/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/ICompareUIConstants.java
@@ -0,0 +1,21 @@
+package org.eclipse.compare.internal;
+
+
+public interface ICompareUIConstants {
+ public final String PREFIX = CompareUIPlugin.getPluginId() + "."; //$NON-NLS-1$
+
+ public static final String DTOOL_NEXT= "dlcl16/next_nav.gif"; //$NON-NLS-1$
+ public static final String ETOOL_NEXT= "elcl16/next_nav.gif"; //$NON-NLS-1$
+ public static final String CTOOL_NEXT= ETOOL_NEXT;
+
+ public static final String DTOOL_PREV= "dlcl16/prev_nav.gif"; //$NON-NLS-1$
+ public static final String ETOOL_PREV= "elcl16/prev_nav.gif"; //$NON-NLS-1$
+ public static final String CTOOL_PREV= ETOOL_PREV;
+
+ public static final String RETARGET_PROJECT= "eview16/compare_view.gif"; //$NON-NLS-1$
+
+ public static final String IGNORE_WHITESPACE_ENABLED= "etool16/ignorews_edit.gif"; //$NON-NLS-1$
+ public static final String IGNORE_WHITESPACE_DISABLED= "dtool16/ignorews_edit.gif"; //$NON-NLS-1$
+
+ public static final String REVERSE_PATCH_ENABLED = "etool16/reverse_enabled.gif"; //$NON-NLS-1$
+}

Back to the top