KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * @(#)ErrorType.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 import javax.lang.model.element.TypeElement;
12
13
14 /**
15  * Represents a class or interface type that cannot be properly modeled.
16  * This may be the result of a processing error,
17  * such as a missing class file or erroneous source code.
18  * Most queries for
19  * information derived from such a type (such as its members or its
20  * supertype) will not, in general, return meaningful results.
21  *
22  * @author Joseph D. Darcy
23  * @author Scott Seligman
24  * @author Peter von der Ahé
25  * @version 1.3 06/07/31
26  * @since 1.6
27  */

28 public interface ErrorType extends DeclaredType {
29 }
30
Popular Tags