📄 outdaofactory.java
字号:
/**
* EnterpriseDAOFactory.java 07/01/2002,
* Author:
*
* Copyright (c) 2002 Censoft Corp.
* Beijing China
* All rights reserved.
*
* Modifier:
* Time:
***/
package com.gs.component.out.dao;
import com.gs.util.*;
import com.gs.component.out.*;
public class OutDAOFactory {
/**
* This method instantiates a EnterpriseDAOImpl return EnterpriseDAO
* EnterpriseDAOImpl implements EnterpriseDAO
*/
public static OutDAO getDAO() throws AppException {
OutDAO outDAO = null;
try {
outDAO = new OutDAOImpl();
}
catch (Exception e) {
throw new AppException("OutDAOFactory.getDAO: FetcAppException while instantiates OutDAOImpl : \n" +
e.getMessage());
}
return outDAO;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -