@param adaptee the MetaClass to decorate with interceptability
(final MetaClassRegistry registry, final Class theClass, final MetaClass adaptee)
| 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 |
nothing calls this directly
no test coverage detected