Open Source Repository

Home /open-symphony/oscore-2.2.6 | Repository Home



com/opensymphony/provider/XMLPrinterProvider.java
/*
 * Copyright (c) 2002-2003 by OpenSymphony
 * All rights reserved.
 */
package com.opensymphony.provider;

import org.w3c.dom.Document;

import java.io.IOException;
import java.io.Writer;


/**
 * Provider for pretty printing XML DOM documents to a stream.
 *
 @author <a href="mailto:[email protected]">Joe Walnes</a>
 @version $Revision: 5 $
 *
 @see com.opensymphony.util.XMLUtils
 */
public interface XMLPrinterProvider extends Provider {
    //~ Methods ////////////////////////////////////////////////////////////////

    void print(Document doc, Writer outthrows IOException;
}