KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test14 > CCTest14iv


1 package test14;
2
3 public class CCTest14iv {
4     
5     public static void main(String JavaDoc[] args) {
6         List<String JavaDoc> l; //Check the CC after <
7

8     l = new List<String JavaDoc>(); //Check the CC after <
9

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

12
13     }
14
15 }
16
Popular Tags