/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ /** * * @author Bill Burke * @version $Revision: 1.1 $ * */ public class POJO { @trace @billable public POJO() { System.out.println("empty constructor"); } @trace public POJO(int i) { System.out.println("int constructor"); } @trace @billable public void someMethod() { System.out.println("someMethod"); } @trace public int field; }