📄 daofactory.java
字号:
package cn.mldn.lxh.note.factory ;
import cn.mldn.lxh.note.dao.* ;
import cn.mldn.lxh.note.dao.impl.* ;
public class DAOFactory
{
public static PersonDAO getPersonDAOInstance()
{
return new PersonDAOImpl() ;
}
public static NoteDAO getNoteDAOInstance()
{
return new NoteDAOImpl() ;
}
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -