extensionmanager.vm

来自「一个数据访问层Torque3.1的生成器的源代码」· VM 代码 · 共 41 行

VM
41
字号
#* * author <a href="mailto:jmcnally@collab.net">John McNally</a> * version $Id: ExtensionManager.vm,v 1.2 2003/08/07 13:13:00 mpoeschl Exp $ *##set ($interfaceName = $table.JavaName)#if ($table.Interface)  #set ($interfaceName = $table.Interface)#endpackage $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 <code>${interfaceName}Manager</code> instance.     *     * @exception TorqueException if an error occurs     */    public ${interfaceName}Manager()        throws TorqueException    {        super();    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?