I want to debug an Eclipse plugin that I'm writing with Eclipse. To debug this plugin I would like to set a conditional breakpoint on the Eclipse ClassLoader, which is a package of the Eclipse distribution: org.eclipse.osgi.internal.loader.EquinoxClassLoader, in the plugin org.eclipse.osgi_X.YY.jar.
So the question is: how can I do this ? Is it even possible ?
I saw some other questions to set conditional breakpoints; it's either on current project packages or third-party packages, but not on an internal plugin. Thanks for your answers !