📄 daofactory.java
字号:
package org.lxh.struts.note.factory;
import org.lxh.struts.note.dao.NoteDAO;
import org.lxh.struts.note.dao.PersonDAO;
import org.lxh.struts.note.impl.NoteDAOImpl;
import org.lxh.struts.note.impl.PersonDAOImpl;
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 + -