
org.codehaus.plexus.util.xml.XMLWriter Maven / Gradle / Ivy
Go to download
A collection of various utility classes to ease working with strings, files, command lines, XML and more.
package org.codehaus.plexus.util.xml;
public interface XMLWriter
{
void startElement( String name );
void addAttribute( String key, String value );
void writeText( String text );
void writeMarkup( String text );
void endElement();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy