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