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