?? todoitem.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;}}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -