blob: a5fd6d48f21f47d9be27ef2d4b0e26dc96b3abba [file] [log] [blame]
package testsubjects;
import java.util.concurrent.Callable;
import org.apache.tapestry5.plastic.test.TestInject;
public class InjectionSubjectSubclass extends InjectionSubject
{
@TestInject
private Callable<Object> callable;
Object call() throws Exception
{
return callable.call();
}
}