CalEnv.java 547 Bytes
package utils;

/**
 * 范围计算后的Row与Col类
 */
public class CalEnv {

    private int startCol;

    private int startRow;

    public CalEnv(int startX, int startY) {
        this.startCol = startX;
        this.startRow = startY;
    }

    public int getStartCol() {
        return startCol;
    }

    public void setStartCol(int startCol) {
        this.startCol = startCol;
    }

    public int getStartRow() {
        return startRow;
    }

    public void setStartRow(int startRow) {
        this.startRow = startRow;
    }
}