net.sf.andromedaioc.model.builder.BeanModelCollector 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.model.builder;
import net.sf.andromedaioc.model.beans.BeanModel;
import net.sf.andromedaioc.model.beans.ReferenceKey;
import java.util.Map;
/**
* Bean model collector
*
* @author Alexey Mitrov
*/
public interface BeanModelCollector {
/**
* Collect beans models from different sources
*
* @return map of collected beans
*
* @throws Exception
*/
Map collectBeans() throws Exception;
}