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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


Documentedjava.lang.annotation

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

A
meta-annotation
of this type indicates that the annotated type should be documented
by Javadoc and similar documentation tools. If an annotation type is
an @Documented annotation, then the presence of an
annotation of that type is part of the public API of the annotated
program element. java.lang.Deprecated is an
@Documented annotation type, for example, and so
are each of the meta-annotation types in this package.

It is recommended that any annotation type that is
@Documented should also have runtime
@Retention so that the presence of the annotation
can be queried via reflection.


Figure 10-76. java.lang.annotation.Documented

public @interface

Documented {
}



    / 1191