jadex.bytecode.invocation.IInjector 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 for generated bean injectors.
*
*/
public interface IInjector
{
/**
* Injects properties into a bean.
*
* @param object The target bean object.
* @param properties The bean properties, names followed by values,
* size must be even.
*/
public void inject(Object object, Object... properties);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy