KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > TestComp2


1
2 public class TestComp2 implements org.picocontainer.Startable {
3
4     public TestComp2(TestComp tc, StringBuffer JavaDoc sb) {
5         sb.append("-TestComp2");
6         if (tc == null) {
7             throw new NullPointerException JavaDoc();
8         }
9     }
10
11     public void start() {}
12     public void stop() {}
13 }
14
15
Popular Tags