
net.cassite.pure.ioc.ExtendingHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pure.ioc Show documentation
Show all versions of pure.ioc Show documentation
Lightweight type and annotation based dependency injection framework
The newest version!
package net.cassite.pure.ioc;
/**
* Fill implements of this interface into Extend annotation.
* This interface's implements are used to simplify extending object factories'
* retrieving process.
*
* @author wkgcass
*
* @see net.cassite.pure.ioc.annotations.Extend
*
*/
public interface ExtendingHandler {
/**
* Retrieve objects with given arguments.
*
* @param args
* arguments from Extend annotation
* @return retrieved object
*/
Object get(String[] args);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy