⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mbmanagerimpl.java

📁 spring+hibernate+struts code
💻 JAVA
字号:
package com.relationinfo.service.impl;import java.util.List;import com.relationinfo.model.Mb;import com.relationinfo.dao.MbDAO;import com.relationinfo.service.MbManager;public class MbManagerImpl extends BaseManager implements MbManager {    private MbDAO dao;    /**     * Set the DAO for communication with the data layer.     * @param dao     */    public void setMbDAO(MbDAO dao) {        this.dao = dao;    }    /**     * @see com.relationinfo.service.MbManager#getMbs(com.relationinfo.model.Mb)     */    public List getMbs(final Mb mb) {        return dao.getMbs(mb);    }    /**     * @see com.relationinfo.service.MbManager#getMb(String mbbm)     */    public Mb getMb(final String mbbm) {        return dao.getMb(new String(mbbm));    }    /**     * @see com.relationinfo.service.MbManager#saveMb(Mb mb)     */    public void saveMb(Mb mb) {        dao.saveMb(mb);    }    /**     * @see com.relationinfo.service.MbManager#removeMb(String mbbm)     */    public void removeMb(final String mbbm) {        dao.removeMb(new String(mbbm));    }}

⌨️ 快捷键说明

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