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

Summary: Patch for: Code Templates: add "Java method name" variable
Product: editor Reporter: fommil <fommil>
Component: Completion & TemplatesAssignee: Dusan Balek <dbalek>
Status: RESOLVED FIXED    
Severity: blocker Keywords: PATCH_AVAILABLE
Priority: P3    
Version: 6.x   
Hardware: All   
OS: All   
URL: http://www.nabble.com/Current-Java-method-name-in-Code-Templates-td22400520.html#a22428960
Issue Type: ENHANCEMENT Exception Reporter:
Bug Depends on:    
Bug Blocks: 148947    
Attachments: Proposed patch

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.