Details
-
Type:
New Feature
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Won't Fix
-
Affects Version/s: 1.5.7
-
Fix Version/s: None
-
Component/s: Content Assist
-
Labels:None
-
Number of attachments :
Description
Assuming we have a class such as
class SomeOne {
/**
* The name of the person
*/
def name
}
the property comment for name can be shown as a tooltip for code completion in multiple places:
- constructor ( new SomeOne(name : 'asd') )
- getter ( newSomeOne().setName('asd') )
- setter ( new SomeOne().getName() )
- direct property access ( newSomeOne().name = 'asd' )
It would be a nice addition and in the spirit of Groovy - DRY.
Issue Links
- is superceded by
-
GRECLIPSE-359
Source locations for java doc
-
See
GRECLIPSE-359instead.