[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[news.eclipse.tools] Re: external tool, click on errors with line numbers?

Thanks,
For future reference, is there a way I could have found this information in
the Eclipse Help docs?  I am looking at  "Platform Plugin Developer Guide" /
"Reference" / "Extension Points Reference" and the extension point you
mentioned is not there. ?  Are there more extension point listed elsewhere?
Does one need to look at the source code to find some of them?

Rob


"Darin Swanson" <Darin_Swanson@xxxxxxxxxx> wrote in message
news:b7rr1e$mad$1@xxxxxxxxxxxxxxxx
> Rob,
>
> You will need to extend the org.eclipse.debug.ui.consoleLineTrackers
> extension point in your own plugin.
>
> The org.eclipse.ui.externaltools plugin provides two examples: the
> javacLineTracker and the taskLineTracker.
> You will ant to register your consoleLineTracker for the name of your
> external program (see ProgramLaunchDelegate if interested).
> So for example:
> <consoleLineTracker
>
> id = "robs.cool.nant.errorLineTracker"
>
> class = "org.rob.nant.ErrorLineTracker"
>
> processType = "NAnt">
>
> </consoleLineTracker>
>
> This assumes that the name of the external tool you run is called NAnt.
>
> HTH
> Darins
>
>