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

📄 categorymanager.java

📁 struts+hibernate+spring的blog,本人也是下载的
💻 JAVA
字号:
package com.weblog.service;import java.util.List;import com.weblog.model.Category;import com.weblog.dao.CategoryDao;public interface CategoryManager {	/**	 * Retrieves all of the categorys	 */	public List getCategorys();	/**	 * Gets category's information based on id.	 * 	 * @param id	 *            the category's id	 * @return category populated category object	 */	public Category getCategory(Long id);	/**	 * Saves a category's information	 * 	 * @param category	 *            the object to be saved	 */	public void saveCategory(Category category);	/**	 * Removes a category from the database by id	 * 	 * @param id	 *            the category's id	 */	public void removeCategory(Long id);}

⌨️ 快捷键说明

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