A hook to allow names to be converted into some other object such as a QName in XML or ObjectName in JMX. @param methodName the name of the desired method @return the object representing the name
(final String methodName)
| 262 | * @return the object representing the name |
| 263 | */ |
| 264 | protected Object getName(final String methodName) { |
| 265 | if (nameMappingClosure != null) { |
| 266 | return nameMappingClosure.call(methodName); |
| 267 | } |
| 268 | return methodName; |
| 269 | } |
| 270 | |
| 271 | /** |
| 272 | * A hook to allow nodes to be processed once they have had all of their |