1 22 package org.jboss.test.aop.precedence; 23 24 29 public class POJO 30 { 31 public int var; 32 33 public POJO() 34 { 35 System.out.println("*** POJO constructor"); 36 } 37 38 public void oneMethod() 39 { 40 System.out.println("*** POJO oneMethod"); 41 } 42 43 public void twoMethod() 44 { 45 System.out.println("*** POJO twoMethod"); 46 } 47 48 public void threeMethod() 49 { 50 System.out.println("*** POJO threeMethod"); 51 } 52 } 53 | Popular Tags |