All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.youthlin.ioc.context.Context Maven / Gradle / Ivy

package com.youthlin.ioc.context;

import java.util.Set;

/**
 * 创建: youthlin.chen
 * 时间: 2017-08-10 13:31.
 */
public interface Context {
    Object getBean(String name);

     T getBean(Class clazz);

     T getBean(String name, Class clazz);

    int getBeanCount();

    Set getBeans();

    Set getUnloadedClass();

}