KickJava   Java API By Example, From Geeks To Geeks.

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


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

6 public class IncorrectType58119b {
7     
8     public void doStuff2() {
9         d = IncorrectType58119b.buffer();
10     }
11     
12     private static StringBuffer JavaDoc buffer() {
13         return null;
14     }
15 }
16
Popular Tags