KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > aop > annotated > declare > POJO


1 /*
2  * JBoss, the OpenSource J2EE webOS
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7
8 package org.jboss.test.aop.annotated.declare;
9
10 /**
11  *
12  * @author <a HREF="mailto:kabir.khan@jboss.org">Kabir Khan</a>
13  * @version $Revision: 1.1.8.2 $
14  */

15 public class POJO
16 {
17    void someMethod()
18    {
19       otherMethod();
20    }
21    
22    void otherMethod()
23    {
24       
25    }
26 }
27
Popular Tags