1 22 package org.jboss.test.aop.annotated; 23 24 30 public class VariaPOJO 31 { 32 public void methodWithInterceptor() 33 { 34 System.out.println("POJO methodWithInterceptor"); 35 } 36 37 public void methodWithInterceptorFactory() 38 { 39 System.out.println("POJO methodWithInterceptorFactory"); 40 } 41 42 public void methodWithTypedef() 43 { 44 System.out.println("POJO methodWithTypedef"); 45 } 46 47 public void cflowMethod1() 48 { 49 System.out.println("POJO cflowMethod1"); 50 cflowMethod2(); 51 } 52 53 public void cflowMethod2() 54 { 55 System.out.println("POJO cflowMethod2"); 56 privateMethod(); 57 } 58 59 public void dynamicCFlowMethod() 60 { 61 System.out.println("POJO dynamicCFlowMethod"); 62 } 63 64 private void privateMethod() 65 { 66 System.out.println("POJO privateMethod"); 67 } 68 69 public void precedenceMethod() 70 { 71 System.out.println("POJO precedenceMethod"); 72 } 73 74 } 75 | Popular Tags |