/**
* @see IActionDelegate#run(IAction)
*/
public final void run(IAction action) {
if (action instanceof ObjectPluginAction) {
ObjectPluginAction objectAction = (ObjectPluginAction) action;
ISelection selection = objectAction.getSelection();
System.out.println(selection.getClass().getName());
if (selection instanceof StructuredSelection) {
Shell shell = new Shell();
try {
StructuredSelection treeSelection = (StructuredSelection) selection;