KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > lang > model > type > PrimitiveType


1 /*
2  * @(#)PrimitiveType.java 1.3 06/07/31
3  *
4  * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7
8 package javax.lang.model.type;
9
10
11 /**
12  * Represents a primitive type. These include
13  * {@code boolean}, {@code byte}, {@code short}, {@code int},
14  * {@code long}, {@code char}, {@code float}, and {@code double}.
15  *
16  * @author Joseph D. Darcy
17  * @author Scott Seligman
18  * @author Peter von der Ahé
19  * @version 1.3 06/07/31
20  * @since 1.6
21  */

22 public interface PrimitiveType extends TypeMirror {
23 }
24
Popular Tags