KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jfox > ioc > sample > SampleComponent


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.sample;
8
9 import org.jfox.ioc.Component;
10
11 /**
12  * @author <a HREF="mailto:young_yy@hotmail.com">Young Yang</a>
13  */

14
15 public interface SampleComponent {
16
17     public String JavaDoc getName();
18
19     public void setName(String JavaDoc name);
20
21     public void setComponent(Component tc);
22 }
Popular Tags