KickJava   Java API By Example, From Geeks To Geeks.

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


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

6 public class InitializeVariable1 {
7     
8     public InitializeVariable1() {
9     }
10     
11     private int doStuff() {
12         int l = 2, f, h = 3;
13         return f;
14     }
15     
16 }
17
Popular Tags