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

Method toString

src/main/java/groovy/lang/MetaMethod.java:158–170  ·  view source on GitHub ↗

{@inheritDoc}

()

Source from the content-addressed store, hash-verified

156
157 /** {@inheritDoc} */
158 @Override
159 public String toString() {
160 return super.toString()
161 + "[name: "
162 + getName()
163 + " params: "
164 + FormatHelper.toArrayString(getParameterTypes())
165 + " returns: "
166 + getReturnType()
167 + " owner: "
168 + getDeclaringClass()
169 + "]";
170 }
171
172 /** {@inheritDoc} */
173 @Override

Callers

nothing calls this directly

Calls 6

getNameMethod · 0.95
toArrayStringMethod · 0.95
getReturnTypeMethod · 0.95
getDeclaringClassMethod · 0.95
toStringMethod · 0.65
getParameterTypesMethod · 0.45

Tested by

no test coverage detected