If you chose to implement an external clipboard manager, this method should be called anytime the clipboard content has been changed by actions outside the diagram editor.
The Editor Events topic describes clipboard events you should handle to manage clipboard requests and clipboard changes that occur within the editor.
.clipboardContentChanged(/* Boolean */ contentChanged)
Indicated whether or not pasteable content is available on the clipboard.
editor.startup(...); ... // Inform the editor that the content on the clipboard has // changed and that pasteable content is available. editor.clipboardContentChanged(true);