KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.netbeans.test.java.hints;
2
3 import java.util.List JavaDoc;
4
5 public class TypevarsAndErrors<T> {
6     
7     public TypevarsAndErrors() {
8     }
9     
10     public void test(T c1, Class JavaDoc<T> c2, E e1, List JavaDoc<E> e2) {
11         this.c1 = c1;
12         this.c2 = c2;
13         this.e1 = e1;
14         this.e2 = e2;
15     }
16 }
17
Popular Tags