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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


Retentionjava.lang.annotation

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

A
meta-annotation
of this type specifies how long the annotated annotation type should
be retained. The value( ) of this annotation type
is one of the three RetentionPolicy enumerated
constants. See RetentionPolicy for details. If an
annotation type does not have an @Retention
meta-annotation, its default retention is
RetentionPolicy.CLASS.


Figure 10-80. java.lang.annotation.Retention

public @interface

Retention {
// Public Instance Methods
RetentionPolicy

value ( );
}



    / 1191