| | |
| | | private int row; |
| | | private int col; |
| | | private Object obj; |
| | | private String objCode; |
| | | private boolean merged = false; |
| | | private int rowTo; |
| | | private int colTo; |
| | |
| | | private String dateFormat; |
| | | private boolean readOnly; |
| | | private Integer width; |
| | | |
| | | public String getObjCode() { |
| | | return objCode; |
| | | } |
| | | |
| | | public void setObjCode(String objCode) { |
| | | this.objCode = objCode; |
| | | } |
| | | |
| | | public String getFontColor() { |
| | | return this.fontColor; |
| | |
| | | this.obj = obj; |
| | | } |
| | | |
| | | public WriteExcelData(int row, int col, Object obj,String objCode) { |
| | | this.row = row; |
| | | this.col = col; |
| | | this.obj = obj; |
| | | this.objCode = objCode; |
| | | } |
| | | |
| | | public WriteExcelData(int row, int col, Object obj,String objCode,boolean copyStyle) { |
| | | this.row = row; |
| | | this.col = col; |
| | | this.obj = obj; |
| | | this.objCode = objCode; |
| | | this.copyStyle = copyStyle; |
| | | } |
| | | |
| | | public void writeFormula(int row, int col, String foumula) { |
| | | this.row = row; |
| | | this.col = col; |