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

Class DefaultPropertyWriter

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

Default PropertyWriter implementation using Groovy property access.

Source from the content-addressed store, hash-verified

24 * Default {@link PropertyWriter} implementation using Groovy property access.
25 */
26public class DefaultPropertyWriter implements PropertyWriter {
27 /**
28 * Shared property writer instance.
29 */
30 public static final PropertyWriter INSTANCE = new DefaultPropertyWriter();
31
32 /** {@inheritDoc} */
33 @Override
34 public void write(Object owner, String propertyName, Object value) {
35 InvokerHelper.setProperty(owner, propertyName, value);
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…