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 160042 - Patch for: Code Templates: add "Java method name" variable
Summary: Patch for: Code Templates: add "Java method name" variable
Status: RESOLVED FIXED
Alias: None
Product: editor
Classification: Unclassified
Component: Completion & Templates (show other bugs)
Version: 6.x
Hardware: All All
: P3 blocker (vote)
Assignee: Dusan Balek
URL: http://www.nabble.com/Current-Java-me...
Keywords: PATCH_AVAILABLE
Depends on:
Blocks: 148947
  Show dependency tree
 
Reported: 2009-03-10 20:40 UTC by fommil
Modified: 2014-05-17 04:33 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments
Proposed patch (2.79 KB, patch)
2013-11-28 21:19 UTC, markiewb
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description fommil 2009-03-10 20:40:09 UTC
This is an RFE for the ability to access the current method name in the Java Code Template system. It would enable templates such as

throw new UnsupportedOperationException("TODO: implement METHODNAME");
Comment 1 Dusan Balek 2013-06-20 15:58:30 UTC
Unfortunately NB 7.4 is already feature frozen. Marking as an enhancement for
the next release.
Comment 2 markiewb 2013-11-28 21:19:09 UTC
Created attachment 142701 [details]
Proposed patch

@Dusan: I like to propose a patch to solve the issue. A new pattern "currMethodName" is introduced. Please review and commit

The code template from the original requester can now be expressed via

${no-indent} throw new UnsupportedOperationException("TODO: implement ${methodName currMethodName editable="false"}()");
Comment 3 Dusan Balek 2014-05-16 08:14:19 UTC
Patch applied. Thank you for your contribution.

http://hg.netbeans.org/jet-main/rev/71c33275ad13
Comment 4 Quality Engineering 2014-05-17 04:33:06 UTC
Integrated into 'main-silver', will be available in build *201405170001* on http://bits.netbeans.org/dev/nightly/ (upload may still be in progress)

Changeset: http://hg.netbeans.org/main-silver/rev/71c33275ad13
User: Dusan Balek <dbalek@netbeans.org>
Log: Issue #160042 - Patch for: Code Templates: add "Java method name" variable - applied.