package com.srbenoit.xml;

/**
 * The interface implemented by elements, empty elements, and CData spans.
 */
public interface Node {

    /**
     * Generates the print representation of the node.
     *
     * @param   xml  the source XML
     * @return  the print representation
     */
    String print(String xml);
}
