MCPcopy Index your code
hub / github.com/apache/groovy / getName

Method getName

src/main/java/groovy/util/BuilderSupport.java:264–269  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers 1

invokeMethodMethod · 0.95

Calls 1

callMethod · 0.65

Tested by

no test coverage detected