| SomeIntroduction.java |
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jboss.test.aop.bean;
/**
*
* @author <a href="mailto:bill@jboss.org">Bill Burke</a>
* @version $Revision: 1.4 $
*/
public class SomeIntroduction implements Introduction, Introduction2
{
public SomeIntroduction(Object objIntroduced)
{
}
public String helloWorld(String str)
{
return "hello " + str;
}
public String goodbye(String str)
{
return "goodbye " + str;
}
}
| SomeIntroduction.java |