?? mbdao.java
字號:
package com.relationinfo.dao;import java.util.List;import com.relationinfo.model.Mb;public interface MbDAO extends DAO { /** * Retrieves all of the mbs */ public List getMbs(Mb mb); /** * Gets mb's information based on primary key. An * ObjectRetrievalFailureException Runtime Exception is thrown if * nothing is found. * * @param mbbm the mb's mbbm * @return mb populated mb object */ public Mb getMb(final String mbbm); /** * Saves a mb's information * @param mb the object to be saved */ public void saveMb(Mb mb); /** * Removes a mb from the database by mbbm * @param mbbm the mb's mbbm */ public void removeMb(final String mbbm);}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -