forked from fanruan/easyexcel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
589 B
34 lines
589 B
5 years ago
|
package com.alibaba.excel.metadata;
|
||
|
|
||
|
/**
|
||
|
* cell
|
||
|
*
|
||
|
* @author Jiaju Zhuang
|
||
|
**/
|
||
|
public class AbstractCell implements Cell {
|
||
|
/**
|
||
|
* Row index
|
||
|
*/
|
||
|
private Integer rowIndex;
|
||
|
/**
|
||
|
* Column index
|
||
|
*/
|
||
|
private Integer columnIndex;
|
||
|
|
||
|
public Integer getRowIndex() {
|
||
|
return rowIndex;
|
||
|
}
|
||
|
|
||
|
public void setRowIndex(Integer rowIndex) {
|
||
|
this.rowIndex = rowIndex;
|
||
|
}
|
||
|
|
||
|
public Integer getColumnIndex() {
|
||
|
return columnIndex;
|
||
|
}
|
||
|
|
||
|
public void setColumnIndex(Integer columnIndex) {
|
||
|
this.columnIndex = columnIndex;
|
||
|
}
|
||
|
}
|