/*
 * JBoss, the OpenSource J2EE webOS
 *
 * Distributable under LGPL license.
 * See terms of license at gnu.org.
 */
package org.jboss.test.aop.bean;

public class CFlowedPOJO
{
   public void method1()
   {
      method2();
   }

   public void method2()
   {
      method3();
   }

   public void method3()
   {
   }

   public void recursive(int i)
   {
      if (i < 3) recursive(i + 1);
   }
}