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

Class DefaultPropertyReader

src/main/java/groovy/beans/DefaultPropertyReader.java:26–37  ·  view source on GitHub ↗

Default PropertyReader implementation using Groovy property access.

Source from the content-addressed store, hash-verified

24 * Default {@link PropertyReader} implementation using Groovy property access.
25 */
26public class DefaultPropertyReader implements PropertyReader {
27 /**
28 * Shared property reader instance.
29 */
30 public static final PropertyReader INSTANCE = new DefaultPropertyReader();
31
32 /** {@inheritDoc} */
33 @Override
34 public Object read(Object owner, String propertyName) {
35 return InvokerHelper.getPropertySafe(owner, propertyName);
36 }
37}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…