instrumentcell.java.svn-base
来自「java写的一个模拟cpu程序」· SVN-BASE 代码 · 共 56 行
SVN-BASE
56 行
/**
* 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 + =
减小字号Ctrl + -
显示快捷键?