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.
39 lines
868 B
39 lines
868 B
/* |
|
* Copyright (C), 2018-2022 |
|
* Project: starter11 |
|
* FileName: AbstractCsvImportProcessor |
|
* Author: |
|
* Date: 2022/9/14 22:53 |
|
*/ |
|
package com.fr.plugin.ajhig.fun.impl; |
|
|
|
import com.fr.plugin.ajhig.fun.CsvImportProcessor; |
|
import com.fr.report.cell.DynamicAttrElem; |
|
import com.fr.report.report.Report; |
|
|
|
/** |
|
* <Function Description><br> |
|
* <AbstractCsvImportProcessor> |
|
* |
|
* @author |
|
* @since 1.0.0 |
|
*/ |
|
public abstract class AbstractCsvImportProcessor implements CsvImportProcessor { |
|
public AbstractCsvImportProcessor() { |
|
} |
|
|
|
@Override |
|
public int currentAPILevel() { |
|
return -1; |
|
} |
|
|
|
@Override |
|
public int layerIndex() { |
|
return -1; |
|
} |
|
|
|
@Override |
|
public Object processImportCellValue(DynamicAttrElem dynamicAttrElem, Object value, Report report) { |
|
return value; |
|
} |
|
} |