todoitem.java
来自「ext yui dwr结合的工程」· Java 代码 · 共 22 行
JAVA
22 行
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 + =
减小字号Ctrl + -
显示快捷键?