KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jfox > ioc > component > TestComponentE


1 /* JFox, the OpenSource J2EE Application Server
2  *
3  * Distributable under GNU LGPL license by gun.org
4  * more details please visit http://www.huihoo.org/jfox
5  */

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 example
16  *
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     @Managable
26     public String JavaDoc getName() {
27         return "";
28     }
29
30     @Managable
31     public void setName(String JavaDoc name) {
32     }
33
34     public static void main(String JavaDoc[] args) {
35
36     }
37 }
38
39
Popular Tags