📄 computer.java~1~
字号:
package cn.com.S1t55.killer.entity;
import java.awt.BorderLayout;
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 byte onUse;
private String notes;
public Computer() {
try {
jbInit();
} catch (Exception exception) {
exception.printStackTrace();
}
}
private void jbInit() throws Exception {
setLayout(borderLayout1);
}
public void setId(String id) {
this.id = id;
}
public void setOnUse(byte onUse) {
this.onUse = onUse;
}
public void setNotes(String notes) {
this.notes = notes;
}
public String getId() {
return id;
}
public byte getOnUse() {
return onUse;
}
public String getNotes() {
return notes;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -