net.sf.andromedaioc.model.beans.ContextModel 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.beans;
import java.util.*;
/**
* Context model - intermediate form for context representation
*
* @author Alexey Mitrov
*/
public class ContextModel {
private final Map beans;
public ContextModel(Map beans) {
this.beans = beans;
}
public Map getBeans() {
return beans;
}
}