Java by API/java.lang.annotation/RetentionPolicy — различия между версиями

Материал из Java эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Версия 20:43, 31 мая 2010

RetentionPolicy: RetentionPolicy.RUNTIME (recorded by the compiler and retained by the VM at run time)

   <source lang="java">
    

import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; @Retention(RetentionPolicy.RUNTIME) @interface MyAnnotation {

 String stringValue();
 int intValue();

} public class Main {

 @MyAnnotation(stringValue = "Annotation Example", intValue = 100)
 public static void myMethod() {
 }

}



 </source>