mirror of https://github.com/alibaba/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.
37 lines
658 B
37 lines
658 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); |
|
}
|
|
|