1 6 package org.jfox.ioc.component; 7 8 import org.jfox.ioc.Component; 9 import org.jfox.ioc.ComponentContext; 10 11 17 18 public class TestComponentA implements Component { 19 private String name =""; 20 21 public TestComponentA() { 22 23 } 24 25 public String getName() { 26 return name; 27 } 28 29 public void setName(String name) { 30 this.name = name; 31 } 32 33 public void setComponentContext(ComponentContext ctx) { 34 35 } 36 37 public static void main(String [] args) { 38 39 } 40 } 41 42 | Popular Tags |