POJOAspectTester.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.test.aop.bean; /** * Comment * * @author <a href="mailto:bill@jboss.org">Bill Burke</a> * @version $Revision: 1.1 $ * **/ public class POJOAspectTester { public String marker = "error"; public int field; public POJOAspectTester() {} public void someMethod() {} }
POJOAspectTester.java |