KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test12 > CCTest12


1 package test12;
2
3 public class CCTest12 {
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     l.get(0).indexOf("Hello"); //Check the methods provided after the second dot. Check the type of the variable l shown after the first dot.
13
}
14
15     private static class List<T> {
16         public void add(T t) {
17             //nothing...
18
}
19         
20         public T get(int index) {
21             return null;
22         }
23     }
24 }
25
Popular Tags