📄 instrumentcell.java.svn-base
字号:
/**
* InstrumentCell.java
*
*
* @author 詹道楠
* @date 2008-5-6
*/
package execute;
public class InstrumentCell extends Cell implements Parameters {
private String content;
public InstrumentCell() {
super(INSTRUMENT);
content = null;
}
public InstrumentCell(String s) {
super(INSTRUMENT);
setContent(s);
}
/**
* Return the content.
*/
public String getContent() {
return content;
}
/**
* Reset the content.
*/
public void setContent(String content) {
this.content = content;
}
public String toString() {
return content;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -