Laurits Lorens
Laurits Lorens

Reputation: 47

eclipse plugin: is it possible to "listen" and interpret double-clicks on text editor?

The big picture is that we need to implement a remote debugger as an eclipse plugin. The code that will be passed by during debugging will be shown in an text editor.

I am thinking how can we deal with the issue of placing breakpoints on a file. Is there any way that I can listen for a double-click event and then get the specific line on which the double click was issued?

Many thanks for reading and giving it a thought.

Upvotes: 1

Views: 100

Answers (1)

Tonny Madsen
Tonny Madsen

Reputation: 12718

Have a look at the Eclipse Debug project - they have the complete infrastructure for a new debugger. Including interfaces to breakpoints, editors, etc..

Upvotes: 2

Related Questions