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