#* * author John McNally * version $Id$ *# #set ($interfaceName = $table.JavaName) #if ($table.Interface) #set ($interfaceName = $table.Interface) #end #set ($db = $table.Database) #if ($db.Package) #set ($package = $db.Package) #else #set ($package = $targetPackage) #end package $package; import org.apache.torque.Torque; import org.apache.torque.TorqueException; import org.apache.torque.om.Persistent; /** * This class manages $interfaceName objects. * The skeleton for this class was autogenerated by Torque #if ($addTimeStamp)on: * * [$now] * #end * You should add additional methods to this class to meet the * application requirements. This class will only be generated as * long as it does not already exist in the output directory. */ public class ${interfaceName}Manager extends $basePrefix${interfaceName}Manager { /** * Creates a new ${interfaceName}Manager instance. * * @exception TorqueException if an error occurs */ public ${interfaceName}Manager() throws TorqueException { super(); } }