Java in a Nutshell, 5th Edition [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Java in a Nutshell, 5th Edition [Electronic resources] - نسخه متنی

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید


IncompleteAnnotationExceptionjava.lang.annotation

Java 5.0serializable unchecked

An
exception of this type indicates version skew in an annotation type.
It occurs when the Java VM attempts to read an annotation from a
class file and discovers that the annotation type has added a new
member since the class file was compiled. This means that the
annotation compiled into the class file is incomplete since it does
not define a value for all members of the annotation type. Note that
this exception does not occur if a new member with a
default clause is added to the annotation type.


Figure 10-78. java.lang.annotation.IncompleteAnnotationException

public class

IncompleteAnnotationException extends RuntimeException {
// Public Constructors
public

IncompleteAnnotationException (Class<? extends java.lang.annotation.Annotation>

annotationType ,
String

elementName );
// Public Instance Methods
public Class<? extends java.lang.annotation.Annotation>

annotationType ( );
public String

elementName ( );
}



    / 1191