?? 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 + -