lmmanager.java
来自「Struts数据库开发中的一个案例」· Java 代码 · 共 41 行
JAVA
41 行
package com.relationinfo.service;import java.util.List;import com.relationinfo.model.Lm;import com.relationinfo.dao.LmDAO;public interface LmManager extends Manager { /** * Setter for DAO, convenient for unit testing */ public void setLmDAO(LmDAO lmDAO); /** * Retrieves all of the lms */ public List getLms(Lm lm); /** * Gets lm's information based on lmbm. * @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 + =
减小字号Ctrl + -
显示快捷键?