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. package java.lang.reflect;
  8. /**
  9. * Type is the common superinterface for all types in the Java
  10. * programming language. These include raw types, parameterized types,
  11. * array types, type variables and primitive types.
  12. *
  13. * @since 1.5
  14. */
  15. public interface Type {
  16. }