1 22 package org.jboss.test.aop.bean; 23 24 31 public class POJOConstructorTest 32 { 33 public String data = "error"; 34 35 public POJOConstructorTest() {} 36 37 public POJOConstructorTest(int i) {} 38 39 public POJOConstructorTest(int i, int j) {} 40 41 public int someMethod() { return 0; } 42 43 public void another() {} 44 public void another(int i) {} 45 public void another(int i, int j) {} 46 47 } 48 | Popular Tags |