KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > net > sourceforge > pmd > typeresolution > ClassWithImportOnDemand


1 package test.net.sourceforge.pmd.typeresolution;
2
3 import java.util.*;
4
5 public class ClassWithImportOnDemand {
6
7     public List foo() {
8         return new ArrayList();
9     }
10 }
11
Popular Tags