The only way is to store the class in an instance variable and require it as an argument of the constructor:
public class ContainerTest
{
private Class tClass;
public ContainerTest(Class tClass) {
this.tCLass = tClass;
}
public void doSomething()
{
//access tClass here
}
}