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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


Inheritedjava.lang.annotation

Java 5.0@Documented @Retention(RUNTIME) @Target(ANNOTATION_TYPE) annotation

When an annotation type that has an @Inherited

meta-annotation
is applied to a class, that annotation should be inherited by
subclasses and descendants of the annotated class. The inheritance is
only for classes and their subclasses. If an
@Inherited annotation type is applied to a method
or program element other than a class, no inheritance applies. If the
@Inherited annotation type also has runtime
Retention, reflective access to the annotation
through java.lang.reflect.AnnotatedElement manages
the inheritance of the annotation.


Figure 10-79. java.lang.annotation.Inherited

public @interface

Inherited {
}



    / 1191