package scriptbuilder.structures;

/**
 *
 * @author Bryan McGuffin
 */
public interface I_XML_Writable
{

    /**
     * Translate this object's data into an appropriate XML string.
     *
     * @return an XML-compliant string representing this object's data
     */
    String toXML();
}
