- added context menu entry for editing classifications
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / view / ICdmViewer.java
index 0dd9e9b445e7d74df05c893c5c0ffc4d0220505b..877daa81adc69c3c9822ce4873b1f340515ffd3d 100644 (file)
@@ -11,6 +11,8 @@ package eu.etaxonomy.taxeditor.view;
 
 import java.util.Map;
 
+import org.eclipse.core.commands.ExecutionEvent;
+
 
 /**
  * Implementors of this interface provide a mapping of input elements to views
@@ -38,7 +40,8 @@ public interface ICdmViewer {
      * Opens the viewer defined by the given viewerClass for the given input.
      * @param input the input for which a viewer should be opened
      * @param viewerClass the qualified class name of the viewer
+     * @param event the {@link ExecutionEvent} if invoked via command/handler
      */
-    public void show(Object input, Class<?> viewerClass);
+    public void show(Object input, Class<?> viewerClass, ExecutionEvent event);
 
 }