KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > java > lang > reflect > Type


1 /*
2  * @(#)Type.java 1.2 03/12/19
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7
8 package java.lang.reflect;
9
10 /**
11  * Type is the common superinterface for all types in the Java
12  * programming language. These include raw types, parameterized types,
13  * array types, type variables and primitive types.
14  *
15  * @since 1.5
16  */

17
18 public interface Type {
19 }
20
Popular Tags