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

📄 inotedb.java

📁 《Web程序测试实训教程(Java版)》-徐民鹰-源代码
💻 JAVA
字号:
/**
 * 
 */
package apply;

import java.util.Collection;

/**
 * @author Yang Xueyu
 *
 */
public interface INoteDB {
	//获取通知的详细信息
	public Note getNote (int id);
	//添加通知
	public int addNote (Note notes);
	//删除通知
	public int deleteNote (int id);
	//修改通知
	public int modifyNote (Note notes);
	//通知查询列表
	public Collection getNote ();
	 //添加查重
	public boolean find(String key);
    //修改查重
	public boolean isModify(String key,int id);

}

⌨️ 快捷键说明

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