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

Summary: Support hyperlink navigation to class names by class naming convention
Product: groovy Reporter: akochnev <akochnev>
Component: GrailsAssignee: Martin Janicek <mjanicek>
Status: NEW ---    
Severity: normal    
Priority: P3    
Version: 7.2   
Hardware: PC   
OS: Linux   
Issue Type: ENHANCEMENT Exception Reporter:

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.