This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 90512 - Add support for creating links
Summary: Add support for creating links
Status: RESOLVED WONTFIX
Alias: None
Product: platform
Classification: Unclassified
Component: Output Window (show other bugs)
Version: 6.x
Hardware: All All
: P2 blocker (vote)
Assignee: Milos Kleint
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-12-04 12:33 UTC by Sherold Dev
Modified: 2008-12-22 21:52 UTC (History)
1 user (show)

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Sherold Dev 2006-12-04 12:33:46 UTC
Currently if a client of the output window API wants to display links to the
java sources in stack traces, it has to go through each line, analyze it and
create the link. Having some kind of support for linking the java sources would
prevent duplication of code among different output window clients, which is hard
to maintain.
Comment 1 Antonin Nebuzelsky 2006-12-14 15:49:44 UTC
This requirement goes against the philosophy of Output Window, which is
basically only a fast viewer of possibly very large stream. Output Window does
not know anything about the semantics of the text it displays.
Comment 2 krishs 2006-12-19 16:49:32 UTC
Here is an user opinion to reconsider. It's about usability. JBuilder had this
feature from version 7. Whenever exception  stack traces are printed in the
output window, it provides source links if the sources are available in the open
projects. Makes it easier to understand and fix the problem. Isn't a good use
case for enhancement?
Comment 3 Milos Kleint 2006-12-20 07:17:00 UTC
krishs: not arguing such a feature is bad, but it ought not be implemented in
the output window itself, but somewhere else.
only the module that writes into the  output window is capable of matching the
output to the context and link to the source files. OW doens't know anything
about projects, app servers or anything else that might be necessary for
analyzing the stacktrace.