📄 cellprocessor.java
字号:
package net.sf.jxls.processor;import java.util.Map;import net.sf.jxls.parser.Cell;/** * Allows dynamic processing of cell in excel workbook * @author Leonid Vysochyn */public interface CellProcessor { /** * This method is invoked when cell is processed * * @param cell {@link net.sf.jxls.parser.Cell} object with information about cell * @param namedCells Map with information about all named cells processed before */ void processCell(final Cell cell, final Map namedCells);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -