modifyenterprisedaofactory.java

来自「一套完整的工商12315的源程序jsp部分在12315里,后台JAVA部分在gs」· Java 代码 · 共 35 行

JAVA
35
字号
/**
 * <p>Title: </p>
 * <p>Description: </p>
 * <p>Copyright: Copyright (c) 2003</p>
 * <p>Company: </p>
 * @author not attributable
 * @version 1.0
 */

package com.gs.component.enterprise.dao;

import com.gs.util.*;

public class ModifyEnterpriseDAOFactory {
    public ModifyEnterpriseDAOFactory() {
    }

    /**
     * This method instantiates a ModifyEnterpriseDAOImpl return ModifyEnterpriseDAO
     * ModifyEnterpriseDAOImpl implements ModifyEnterpriseDAO
     */
    public static ModifyEnterpriseDAO getDAO() throws AppException {
        ModifyEnterpriseDAO modifyEnterpriseDAO = null;
        try {
            modifyEnterpriseDAO = new ModifyEnterpriseDAOImpl();
        }
        catch (Exception e) {
            throw new AppException("ModifyEnterpriseDAOFactory.getDAO:  FetcAppException while instantiates ModifyEnterpriseDAOImpl : \n" +
                                   e.getMessage());
        }
        return modifyEnterpriseDAO;
    }

}

⌨️ 快捷键说明

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