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

📄 todoitem.java

📁 extjs加dwr加spring强强联姻
💻 JAVA
字号:
package com.scottwalter.sandbox.model;public class ToDoItem {	private int id;	private String description;	private Author author;		public ToDoItem(int id, String description, Author author) {		this.id = id;		this.description = description;		this.author = author;	}		public int getId() { return this.id;}	public void setId(int id) { this.id = id;}		public String getDescription() { return this.description; }	public void setString(String description) { this.description = description; }			public Author getAuthor() { return this.author; }	public void setAuthor(Author author) { this.author = author;}}

⌨️ 快捷键说明

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