All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.schoolwow.quickhttp.document.parser.ElementHandler Maven / Gradle / Ivy

There is a newer version: 3.0.1
Show newest version
package cn.schoolwow.quickhttp.document.parser;

import cn.schoolwow.quickhttp.document.element.Element;

import java.io.IOException;

public interface ElementHandler {
    /**
     * 标签开始时
     *
     * @param element 标签
     * @return 是否已经处理
     */
    boolean startElement(Element element) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy