1 22 package org.jboss.test.aop.annotated; 23 24 29 public class IntroducedAnnotationPOJO 30 { 31 public IntroducedAnnotationPOJO() 32 { 33 System.out.println("IntroducedAnnotationPOJO constructor"); 34 } 35 36 public void annotationIntroductionMethod() 37 { 38 System.out.println("IntroducedAnnotationPOJO annotationIntroductionMethod"); 39 } 40 41 public void noAnnotationIntroductionMethod() 42 { 43 System.out.println("IntroducedAnnotationPOJO noAnnotationIntroductionMethod"); 44 } 45 46 } 47 | Popular Tags |