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

jadex.bytecode.invocation.IMethodInvoker Maven / Gradle / Ivy

There is a newer version: 4.0.267
Show newest version
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