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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


Package java.lang.annotation

Java 5.0


This
package defines the framework for annotations. It includes the base
Annotation interface that all annotation types
extend, meta-annotation types, their associated
enumerated types, and exception and error
classes related to annotations. The most important members of this
package are the meta-annotation types: Documented,
Inherited, Retention, and
Target.


Interfaces


public interface

Annotation ;

Enumerated Types


public enum

ElementType ;
public enum

RetentionPolicy ;

Annotation Types


public @interface

Documented ;
public @interface

Inherited ;
public @interface

Retention ;
public @interface

Target ;

Exceptions


public class

AnnotationTypeMismatchException extends RuntimeException;
public class

IncompleteAnnotationException extends RuntimeException;

Errors


public class

AnnotationFormatError extends Error;


    / 1191