I would like to open file specified by its path in NetBeans editor at specific line and row. I would like the same functionality as is when some Java/C/C++ or any other programming language prints an Exception. As far as I went for now:
- Write Exception in console
- By using OutputListener resolve what should be printed as hypertext
- OutputListener.outputLineAction that defines what to do when clicked on hypertext
- ---HERE I DONT KNOW WHAT TO DO---
An example of error message I need to resolve:
E ERRORCODE: error definition; line=2; column=30; source='file:/C:/...'
How can I open file in my plugin in text editor and point to specific line and column?