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.
47 lines
1.0 KiB
47 lines
1.0 KiB
package com.alibaba.excel.metadata.property; |
|
|
|
import com.alibaba.excel.annotation.write.style.ContentLoopMerge; |
|
|
|
/** |
|
* Configuration from annotations |
|
* |
|
* @author Jiaju Zhuang |
|
*/ |
|
public class LoopMergeProperty { |
|
/** |
|
* Each row |
|
*/ |
|
private int eachRow; |
|
/** |
|
* Extend column |
|
*/ |
|
private int columnExtend; |
|
|
|
public LoopMergeProperty(int eachRow, int columnExtend) { |
|
this.eachRow = eachRow; |
|
this.columnExtend = columnExtend; |
|
} |
|
|
|
public static LoopMergeProperty build(ContentLoopMerge contentLoopMerge) { |
|
if (contentLoopMerge == null) { |
|
return null; |
|
} |
|
return new LoopMergeProperty(contentLoopMerge.eachRow(), contentLoopMerge.columnExtend()); |
|
} |
|
|
|
public int getEachRow() { |
|
return eachRow; |
|
} |
|
|
|
public void setEachRow(int eachRow) { |
|
this.eachRow = eachRow; |
|
} |
|
|
|
public int getColumnExtend() { |
|
return columnExtend; |
|
} |
|
|
|
public void setColumnExtend(int columnExtend) { |
|
this.columnExtend = columnExtend; |
|
} |
|
}
|
|
|