1 /* JFox, the OpenSource J2EE Application Server2 *3 * Distributable under GNU LGPL license by gun.org4 * more details please visit http://www.huihoo.org/jfox5 */6 7 package org.jfox.ioc.ext;8 9 import org.jfox.ioc.Component;10 11 /**12 *13 * 活跃的Component,这种类型的 Component 在注册到 Registry 之后,14 * Registry 会立即生成Component的实例15 *16 * @author <a HREF="mailto:young_yy@hotmail.com">Young Yang</a>17 */18 19 public interface ActiveComponent extends Component {20 21 }22