KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test13 > CCTest13v


1 package test13;
2
3 public class CCTest13v {
4     private static List<String JavaDoc> l; //Check the CC after <
5

6     public static void main(String JavaDoc[] args) {
7         l = new List<String JavaDoc>(); //Check the CC after <
8

9         l.add("Hello, world"); //Check the signature of the method provided by the CC
10

11
12     }
13     
14 }
15
Popular Tags