KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > test > java > hints > CastOrMethodInvocation58494e


1 package org.netbeans.test.java.hints;
2
3 /**
4  * @author leon chiver
5  */

6 public class CastOrMethodInvocation58494e {
7     
8     /** Creates a new instance of CastOrMethodInvocation58494e */
9     public CastOrMethodInvocation58494e() {
10         Object JavaDoc o = null;
11         new CastOrMethodInvocation58494e(new CastOrMethodInvocation58494e(o));
12     }
13     
14     private CastOrMethodInvocation58494e(String JavaDoc str) {
15         
16     }
17     
18     public CastOrMethodInvocation58494e(CastOrMethodInvocation58494e e) {
19         
20     }
21     
22 }
23
Popular Tags