ActivationClassBuilder
provides an interface to satisfy generation's
common tasks in building an activation class,
as well as a repository for the JavaFactory used
to generate the basic language constructs for the methods in the class.
By the time this is done, it has constructed the following class:
public class #className extends #superClass {
// public void reset() { return; }
public ResultSet execute() throws StandardException {
throwIfClosed("execute");
// statements must be added here
}
public #className() { super(); }
}