1 22 package org.jboss.test.aop.basic; 23 24 30 public class POJOConstructorTest 31 { 32 public String data = "error"; 33 34 public POJOConstructorTest() 35 { 36 } 37 38 public POJOConstructorTest(int i) 39 { 40 } 41 42 public POJOConstructorTest(int i, int j) 43 { 44 } 45 46 public int someMethod() 47 { 48 return 0; 49 } 50 51 public void another() 52 { 53 } 54 55 public void another(int i) 56 { 57 } 58 59 public void another(int i, int j) 60 { 61 } 62 63 } 64 | Popular Tags |