📄 computer.java
字号:
package cn.com.S1t55.killer.entity;
import javax.swing.JPanel;
/**
* <p>Title: </p>
*
* <p>Description: </p>
*
* <p>Copyright: Copyright (c) 2007</p>
*
* <p>Company: </p>
*
* @author not attributable
* @version 1.0
*/
public class Computer extends JPanel {
private String id;
private int onUse;
private String notes;
public Computer() {
}
public void setId(String id) {
this.id = id;
}
public void setOnUse(int onUse) {
this.onUse = onUse;
}
public void setNotes(String notes) {
this.notes = notes;
}
public String getId() {
return id;
}
public int getOnUse() {
return onUse;
}
public String getNotes() {
return notes;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -