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
Post a Comment