
cz.abclinuxu.datoveschranky.tinyDB.responseparsers.ResponseParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tiny-isds Show documentation
Show all versions of tiny-isds Show documentation
Library implementing subset of JavaISDS - basically readonly access.
The newest version!
package cz.abclinuxu.datoveschranky.tinyDB.responseparsers;
import cz.abclinuxu.datoveschranky.tinyDB.holders.OutputHolder;
import org.xml.sax.Attributes;
/**
*
* Rozhraní, přijde refaktorovat
*
* @author Vaclav Rosecky <xrosecky 'at' gmail 'dot' com>
*
*/
public interface ResponseParser {
public OutputHolder startElement(String elName, Attributes attributes);
public void endElement(String elName, OutputHolder handle);
public void done();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy