net.sf.andromedaioc.bean.instantiation.Instantiator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of andromeda-ioc Show documentation
Show all versions of andromeda-ioc Show documentation
Inversion of Control Framework for Android
The newest version!
package net.sf.andromedaioc.bean.instantiation;
import net.sf.andromedaioc.exception.BeanInstantiationException;
/**
* Instance wrapper
*
* @author Alexey Mitrov
*/
public interface Instantiator {
/**
* Create new instance of bean
*
* @return new instance of bean
* @throws BeanInstantiationException
*/
Object newInstance() throws BeanInstantiationException;
}