⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 instrumentcell.java.svn-base

📁 java写的一个模拟cpu程序
💻 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 + -