forked from fanruan/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.
45 lines
813 B
45 lines
813 B
package com.alibaba.excel.analysis.v07; |
|
|
|
import org.xml.sax.Attributes; |
|
|
|
/** |
|
* Cell handler |
|
* |
|
* @author Dan Zheng |
|
*/ |
|
public interface XlsxCellHandler { |
|
/** |
|
* Which tags are supported |
|
* |
|
* @param name |
|
* Tag name |
|
* @return Support parsing or not |
|
*/ |
|
boolean support(String name); |
|
|
|
/** |
|
* Start handle |
|
* |
|
* @param name |
|
* Tag name |
|
* @param attributes |
|
* Tag attributes |
|
*/ |
|
void startHandle(String name, Attributes attributes); |
|
|
|
/** |
|
* End handle |
|
* |
|
* @param name |
|
* Tag name |
|
*/ |
|
void endHandle(String name); |
|
|
|
/** |
|
* Set the comment of the cell |
|
* |
|
* @param comment |
|
* cell comment |
|
*/ |
|
void handleComments(String comment); |
|
}
|
|
|