Re: Disabling fully qualified class names in JavDoc completion

2018-03-07 Thread Niklas Matthies
ccident via a library load.. so, > > > > I would vote for option check, where if it was CHECKED, would drop > > > > the fully qualified class names for base and non-overridden > > > > functions..  If I do override a function, then the fully qualified > > &g

Re: Disabling fully qualified class names in JavDoc completion

2018-03-07 Thread cowwoc
then the fully qualified path should show.. Just concerned about this request -Original Message- From: Thomas Kellerer Sent: Monday, March 05, 2018 11:42 PM To: NetBeans Users Subject: Disabling fully qualified class names in JavDoc completion When using code-completion in JavaDocs (e.g. fo

Re: Disabling fully qualified class names in JavDoc completion

2018-03-07 Thread cowwoc
t concerned about this request -Original Message- From: Thomas Kellerer Sent: Monday, March 05, 2018 11:42 PM To: NetBeans Users Subject: Disabling fully qualified class names in JavDoc completion When using code-completion in JavaDocs (e.g. for a @see attribute), NetBeans always inse

Re: Disabling fully qualified class names in JavDoc completion

2018-03-07 Thread Niklas Matthies
gt; > > Just concerned about this request > > > > > > -Original Message- From: Thomas Kellerer > > Sent: Monday, March 05, 2018 11:42 PM > > To: NetBeans Users > > Subject: Disabling fully qualified class names in JavDoc completion > >

Re: Disabling fully qualified class names in JavDoc completion

2018-03-07 Thread Thomas Kellerer
Monday, March 05, 2018 11:42 PM > To: NetBeans Users > Subject: Disabling fully qualified class names in JavDoc completion > > When using code-completion in JavaDocs (e.g. for a @see attribute), NetBeans > always inserts fully qualifed class names for parameters, e.g. > >    @se

Re: Disabling fully qualified class names in JavDoc completion

2018-03-06 Thread cowwoc
To: NetBeans Users Subject: Disabling fully qualified class names in JavDoc completion When using code-completion in JavaDocs (e.g. for a @see attribute), NetBeans always inserts fully qualifed class names for parameters, e.g.    @see #someMethod(java.lang.String, java.lang.String) Is it possible

Re: Disabling fully qualified class names in JavDoc completion

2018-03-06 Thread Paul Szudzik
a function, then the fully qualified path should show.. Just concerned about this request -Original Message- From: Thomas Kellerer Sent: Monday, March 05, 2018 11:42 PM To: NetBeans Users Subject: Disabling fully qualified class names in JavDoc completion When using code-completion

Re: Disabling fully qualified class names in JavDoc completion

2018-03-06 Thread Claus Lüthje
That’s something I’d like to have, too. Regards, Claus > Am 06.03.2018 um 08:42 schrieb Thomas Kellerer : > > When using code-completion in JavaDocs (e.g. for a @see attribute), NetBeans > always inserts fully qualifed class names for parameters, e.g. > > @see

Re: Disabling fully qualified class names in JavDoc completion

2018-03-05 Thread cowwoc
I'm also interested in this feature. Gili On 2018-03-06 2:42 AM, Thomas Kellerer wrote: When using code-completion in JavaDocs (e.g. for a @see attribute), NetBeans always inserts fully qualifed class names for parameters, e.g. @see #someMethod(java.lang.String, java.lang.String) Is it

Disabling fully qualified class names in JavDoc completion

2018-03-05 Thread Thomas Kellerer
When using code-completion in JavaDocs (e.g. for a @see attribute), NetBeans always inserts fully qualifed class names for parameters, e.g. @see #someMethod(java.lang.String, java.lang.String) Is it possible (in 8.2 or 9.0) to disable this, so that the above is written as: @see