forked from demo/example
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.
18 lines
544 B
18 lines
544 B
6 years ago
|
package com.fr.plugin.core;
|
||
|
|
||
|
import com.fr.base.Style;
|
||
|
import com.fr.report.cell.cellattr.CellGUIAttr;
|
||
|
import com.fr.report.fun.impl.AbstractCellValueProvider;
|
||
|
import com.fr.stable.script.CalculatorProvider;
|
||
|
|
||
|
public class CellValueProcessorImpl extends AbstractCellValueProvider {
|
||
|
@Override
|
||
|
public Object process(Object o, CalculatorProvider calculatorProvider) {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public Object processBeforeToTag(Object o, CellGUIAttr cellGUIAttr, Style style, int i, int i1) {
|
||
|
return null;
|
||
|
}
|
||
|
}
|