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.

34 lines
524 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
* @return
*/
boolean support(String name);
/**
* Start handle
*
* @param name
* @param attributes
*/
void startHandle(String name, Attributes attributes);
/**
* End handle
*
* @param name
*/
void endHandle(String name);
}