All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.vertx.up.atom.container.VInvoker Maven / Gradle / Ivy

There is a newer version: 0.9.0
Show newest version
package io.vertx.up.atom.container;

import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;

public class VInvoker implements InvocationHandler {
    @Override
    public Object invoke(final Object proxy, final Method method, final Object[] args) throws Throwable {
        return method.invoke(proxy, args);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy