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

com.jpattern.core.xml.IXmlReaderStrategy Maven / Gradle / Ivy

There is a newer version: 3.6.2
Show newest version
package com.jpattern.core.xml;

import java.io.Serializable;

/**
 * 
 * @author Francesco Cina'
 *
 * 16/giu/2010
 */
public interface IXmlReaderStrategy extends Serializable {

	void startDocument();

	void endDocument();

	void startNewElement(String name);

	void addAttribute(String name, String value);

	void endElement(String name);

	void addText(String text);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy