I'm using the eclipse BPMN modeler code to create drag'n'drop annotations, and it's working fine excepted that when the annotation icon is added, the entire editor seems like "resetting" and two simple views (extending ViewPart and no observers, no interacting with editing domain) are weirdly closed

The code which is provoking the closure is the following

protected Command createEAnnotationDropCommand(final EAnnotation ea, final EModelElement element) 
    {
        AbstractTransactionalCommand command = new EasyCommand(element) 
        {

            @Override
            protected CommandResult doExecuteWithResult
            (
                    IProgressMonitor monitor, IAdaptable info) 
            throws ExecutionException 
            {
                if (element.getEAnnotation(ea.getSource()) != null) 
                {
                    RemoveCommand.create(getEditingDomain(), element,
                            EcorePackage.eINSTANCE.getEModelElement_EAnnotations(),
                            element.getEAnnotation(ea.getSource())).execute();
                }

                SetCommand.create(getEditingDomain(), ea, 
                        EcorePackage.eINSTANCE.getEAnnotation_EModelElement(),
                        element).execute();


                return CommandResult.newOKCommandResult();
            }
        };
        return new ICommandProxy(command);
    }

Every time the command is dispatched (so the function returns CommandResult.newOKCommandResult() ), the views are shut down.. after that I get the error

org.eclipse.swt.SWTException: Widget is disposed

but I think it's logic because the views have been closed by "something"

I've searched a lot but found nothing, any help would be greatly appreciated

link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.