📄 reportdaofactory.java
字号:
package com.gs.pageBuilder.dao;
/**
* <p>Title: </p>
* <p>Description: </p>
* <p>Copyright: Copyright (c) 2003</p>
* <p>Company: </p>
* @author not attributable
* @version 1.0
*/
import com.gs.util.*;
public class ReportDAOFactory
{
public static ReportDAO getDAO() throws AppException {
ReportDAO reportDAO = null;
try{
reportDAO = new ReportDAOImpl();
} catch (Exception e) {
throw new AppException("ReportDAOFactory.getDAO: AppException while instantiates ReportDAOImpl : \n" + e.getMessage());
}
return reportDAO;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -