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

Method ProxyMetaClass

src/main/java/groovy/lang/ProxyMetaClass.java:60–64  ·  view source on GitHub ↗

@param adaptee the MetaClass to decorate with interceptability

(final MetaClassRegistry registry, final Class theClass, final MetaClass adaptee)

Source from the content-addressed store, hash-verified

58 * @param adaptee the MetaClass to decorate with interceptability
59 */
60 public ProxyMetaClass(final MetaClassRegistry registry, final Class theClass, final MetaClass adaptee) {
61 super(registry, theClass);
62 this.adaptee = Objects.requireNonNull(adaptee, "adaptee must not be null");
63 super.initialize();
64 }
65
66 /** {@inheritDoc} */
67 @Override

Callers

nothing calls this directly

Calls 1

initializeMethod · 0.65

Tested by

no test coverage detected