| Operation.java |
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jboss.test.messagedriven.support;
/**
* A BasicTest operation
*
* @author <a href="mailto:adrian@jboss.com>Adrian Brock</a>
* @version <tt>$Revision: 1.4</tt>
*/
public class Operation
{
protected BasicMessageDrivenUnitTest test;
public Operation(BasicMessageDrivenUnitTest test)
{
this.test = test;
}
public void run() throws Exception
{
}
}
| Operation.java |