eclipse - Extension point to register perspective listener -
I have a plug-in that requires registration for debug events However, it is quite likely that debugging session It will be activated after it starts. So what I'm looking for is some extension point which allows me to listen to changes in perspective (i.e. I can register for debug incidents when debug perspective is opened).
The second solution is to use org.eclipse.ui.startup
extension point, but it is disappointing.
To activate one of the debug ideas, IPartListener
Can be used. Debug ideas can be used outside the debug perspective, IPartListener
also takes advantage of working in this case.
Comments
Post a Comment