Revert missing rank constant
[cdmlib-apps.git] / app-import / src / main / java / eu / etaxonomy / cdm / io / wp6 / CichorieaeCommonNameImportState.java
1 package eu.etaxonomy.cdm.io.wp6;
2
3 import eu.etaxonomy.cdm.io.excel.common.ExcelImportState;
4 import eu.etaxonomy.cdm.io.excel.common.ExcelRowBase;
5
6 public class CichorieaeCommonNameImportState extends ExcelImportState<CommonNameImportConfigurator, ExcelRowBase> {
7 CommonNameRow row;
8
9 public CichorieaeCommonNameImportState(CommonNameImportConfigurator config) {
10 super(config);
11 }
12
13 public void setCommonNameRow(CommonNameRow row) {
14 this.row = row;
15 }
16
17 public CommonNameRow getCommonNameRow(){
18 return row;
19 }
20
21 }