Ciao,
Codice PHP:
import java.lang.annotation.*;
import java.lang.reflect.*;
// An annotation type declaration.
@Retention(RetentionPolicy.RUNTIME)
@interface 
MyAnno {
  
String str();
  
int val();
}
class 
Meta {
  
// Annotate a method.
  
@MyAnno(str "Annotation Example"val 100)
  public static 
void myMeth() {
    
Meta ob = new Meta();
    
// Obtain the annotation for this method
    // and display the values of the members.
    
try {
      
// First, get a Class object that represents
      // this class.
      
Class ob.getClass();
      
// Now, get a Method object that represents
      // this method.
      
Method m c.getMethod("myMeth");
      
// Next, get the annotation for this class.
      
MyAnno anno m.getAnnotation(MyAnno.class);
      
// Finally, display the values.
      
System.out.println(anno.str() + " " anno.val());
    } catch (
NoSuchMethodException exc) {
       
System.out.println("Method Not Found.");
    }
  }
  public static 
void main(String args[]) {
    
myMeth();
  }

quello che mi pare strano in questo codice
č che devo utilizzare m per recuperare l'annotazione MyAnno
sinceramente non ci vedo il nesso
(il nesso per me ci sarebbe se fosse solo all'interno del metodo
e non in tutta la classe)
potete illuminarmi grazie