jadex.bytecode.invocation.IMethodInvoker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-util-bytecode Show documentation
Show all versions of jadex-util-bytecode Show documentation
Jadex bytecode tools contains helper stuff for asm bytecode generation.
package jadex.bytecode.invocation;
/**
* Interface used to byte-engineer an accessor handler.
*
*/
public interface IMethodInvoker
{
/**
* Invokes a method on an object.
*
* @param object The object
* @param methodid The ID of the method.
* @param args The method arguments.
* @return The result, null if void.
*/
public Object invoke(Object object, Object... args);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy