Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

AnnotationAspect03.aj 177B

1234567
  1. public aspect AnnotationAspect03 {
  2. declare warning : execution(* *.*(..)) && @annotation(SimpleAnnotation)
  3. : "@annotation matched here";
  4. }