?? databaseobject.java
字號:
public class DatabaseObject{ private int value; private String name; private boolean modified; public DatabaseObject(int value) { this.value = value; this.modified = false; } public DatabaseObject(int value, String name) { this.value = value; this.name = name; this.modified = false; } public DatabaseObject(int value, String name, boolean mod) { this.value = value; this.name = name; this.modified = mod; } public int getValue() { return this.value; } public void setValue(int value) { this.value = value; this.modified = true; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public boolean isModified() { return modified; }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -