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.component;8 9 import org.jfox.ioc.ComponentContext;10 import org.jfox.ioc.annotation.Managable;11 import org.jfox.ioc.ext.ManagableComponent;12 13 /**14 *15 * managable component example16 *17 * @author <a HREF="mailto:young_yy@hotmail.com">Young Yang</a>18 */19 20 public class TestComponentE implements ManagableComponent {21 22 public void setComponentContext(ComponentContext ctx) {23 }24 25 @Managable26 public String getName() {27 return "";28 }29 30 @Managable31 public void setName(String name) {32 }33 34 public static void main(String [] args) {35 36 }37 }38 39