java - Own eclipse plugin - sharing data between plugins -


i write small eclipse plugin code estimation. @ start use results shown in "problems" tab (warnings , errors) instead of writing next, own tool code analysis. question is: possible use data 1 plugin in another? greatful examples or links tutorials.

thank in advance :)

the objects in problems view called 'markers' , represented org.eclipse.core.resources.imarker interface.

you markers defined on file, folder or project calling findmarkers method on iresource. can ask types of marker or specific types.


Comments

Popular posts from this blog

hibernate - How to load global settings frequently used in application in Java -

python 3.x - Mapping specific letters onto a list of words -

objective c - Ownership modifiers with manual reference counting -