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 211722 - Support hyperlink navigation to class names by class naming convention
Summary: Support hyperlink navigation to class names by class naming convention
Status: NEW
Alias: None
Product: groovy
Classification: Unclassified
Component: Grails (show other bugs)
Version: 7.2
Hardware: PC Linux
: P3 normal (vote)
Assignee: Martin Janicek
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-04-25 15:29 UTC by akochnev
Modified: 2012-04-25 15:29 UTC (History)
0 users

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 akochnev 2012-04-25 15:29:43 UTC
A typical usage pattern in Grails is to inject services into various parts of the app, e.g. : 

class SomeController {
   def someService


}

In many cases, the injected service would not have a static type; however, grails follows a naming convention to avoid having to declare each service. In the example above, hovering over 'someService' should turn into a hyperlink and on clicking on the link should open the SomeService class.