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

📄 info.java

📁 适合学生课程设计使用,这是我自己编写的一个系统.
💻 JAVA
字号:
package bean;

/**
 * @author   Administrator
 */
public class info {
	private String id;						//所有信息的唯一标识
	/**
	 * @uml.property   name="name"
	 */
	private String name;					//信息的名称
	/**
	 * @uml.property   name="description"
	 */
	private String description;				//有关信息的细节或备注
	
	public info() {}
	
	/**
	 * @param id   The id to set.
	 * @uml.property   name="id"
	 */
	public void setId(String id) {
		this.id = id;
	}
	
	/**
	 * @return   Returns the id.
	 * @uml.property   name="id"
	 */
	public String getId() {
		return this.id;
	}
	
	/**
	 * @param name   The name to set.
	 * @uml.property   name="name"
	 */
	public void setName(String name) {
		this.name = name;
	}
	
	/**
	 * @return   Returns the name.
	 * @uml.property   name="name"
	 */
	public String getName() {
		return this.name;
	}
	
	/**
	 * @param description   The description to set.
	 * @uml.property   name="description"
	 */
	public void setDescription(String description) {
		this.description = description;
	}
	
	/**
	 * @return   Returns the description.
	 * @uml.property   name="description"
	 */
	public String getDescription() {
		return this.description;
	}	
}

⌨️ 快捷键说明

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