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

📄 category.java

📁 通过系统把几乎所有与人力资源相关的数据统一管理
💻 JAVA
字号:
//$Id: Category.java,v 1.1.2.1 2003/11/08 02:25:29 oneovthafew Exp $package org.hibernate.test;import java.util.ArrayList;import java.util.List;/** * */public class Category {		public static final String ROOT_CATEGORY = "/";		private long id;	private String name;	private List subcategories = new ArrayList();	private Assignable assignable;	/**	 * Returns the id.	 * @return long	 */	public long getId() {		return id;	}		/**	 * Sets the id.	 * @param id The id to set	 */	public void setId(long id) {		this.id = id;	}		/**	 * Returns the subcategories.	 * @return List	 */	public List getSubcategories() {		return subcategories;	}		/**	 * Sets the subcategories.	 * @param subcategories The subcategories to set	 */	public void setSubcategories(List subcategories) {		this.subcategories = subcategories;	}		/**	 * Returns the name.	 * @return String	 */	public String getName() {		return name;	}		/**	 * Sets the name.	 * @param name The name to set	 */	public void setName(String name) {		this.name = name;	}		public Assignable getAssignable() {		return assignable;	}	public void setAssignable(Assignable assignable) {		this.assignable = assignable;	}}

⌨️ 快捷键说明

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