mirror of https://github.com/alibaba/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.
33 lines
589 B
33 lines
589 B
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; |
|
} |
|
}
|
|
|