This is a follow-up question to @MatthewD's question 'How do I write to the Netbeans Debugger Console (in Java)?'
For a NetBeans breakpoint, it is possible to print line number, class name and thread name using {lineNumber}, {className} and {threadName} respectively. Is there also a simmilar expression for method name?
I have unsuccessfully tested {method} and {methodName}, and searched through NetBeans JPDA API and NetBeans Wiki, but found nothing. I'd rather write {methodName} in the breakpoint's properties than the name itself, that cannot be copy-pasted or used as template.