简体   繁体   中英

Eclipse E4 - UIEvents Mpart Closure/Opening

Does somebody know if there's a UIEvents which tracks the closure/opening of a MPart?

Just to remark it, I don't need a @PreDestroy method. I have some actions to perform outside the MPart's class.

Thanks

Rather than UIEvents use the EPartService IPartListener :

@Inject
EPartService partService;


partService.addPartListener(listener);

The IPartListener has methods called for all major changes to parts.

Note: This is org.eclipse.e4.ui.workbench.modeling.IPartListener not org.eclipse.ui.IPartListener

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM