KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > ConstructorUsedByThis


1 package test;
2
3 public class ConstructorUsedByThis {
4     
5     public ConstructorUsedByThis() {
6         this("");
7     }
8     
9     private ConstructorUsedByThis(String JavaDoc s) {
10         
11     }
12     
13 }
14
Popular Tags