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

com.fireflysource.common.bytecode.MethodProxy Maven / Gradle / Ivy

There is a newer version: 5.0.2
Show newest version
package com.fireflysource.common.bytecode;

import java.lang.reflect.Method;

/**
 * @author Pengtao Qiu
 */
public interface MethodProxy {
    Method method();

    /**
     * Executes this method
     *
     * @param obj  The instance of object that contains this method
     * @param args The parameters of this method
     * @return Return value of this method
     */
    Object invoke(Object obj, Object... args);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy