ref #9448: remove E4 from file names - bulkeditor continue
[taxeditor.git] / eu.etaxonomy.taxeditor.bulkeditor / src / main / java / eu / etaxonomy / taxeditor / bulkeditor / e4 / BulkEditorTooltip.java
index c50362d90f959a70f5696e9230501311a50061f1..67451205ccd802ff131e9c53ca615288cc3d983b 100644 (file)
@@ -49,10 +49,10 @@ public class BulkEditorTooltip extends DefaultToolTip {
         int row = this.natTable.getRowPositionByY(event.y);
 
         LabelStack configLabels = natTable.getConfigLabelsByPosition(col, row);
-        if(configLabels.hasLabel(BulkEditorE4Composite.LABEL_TARGET)){
+        if(configLabels.hasLabel(BulkEditorComposite.LABEL_TARGET)){
             return Messages.BulkEditorTooltip_TARGET;
         }
-        else if(configLabels.hasLabel(BulkEditorE4Composite.LABEL_CANDIDATE)){
+        else if(configLabels.hasLabel(BulkEditorComposite.LABEL_CANDIDATE)){
             return Messages.BulkEditorTooltip_CANDIDATE;
         }
         int colIndex = this.natTable.getColumnIndexByPosition(col);
@@ -75,8 +75,8 @@ public class BulkEditorTooltip extends DefaultToolTip {
         int row = this.natTable.getRowPositionByY(event.y);
 
         LabelStack configLabels = natTable.getConfigLabelsByPosition(col, row);
-        if(configLabels.hasLabel(BulkEditorE4Composite.LABEL_CANDIDATE)
-                || configLabels.hasLabel(BulkEditorE4Composite.LABEL_TARGET)){
+        if(configLabels.hasLabel(BulkEditorComposite.LABEL_CANDIDATE)
+                || configLabels.hasLabel(BulkEditorComposite.LABEL_TARGET)){
             return true;
         }