1 /*
2 * $Id: IDocumentBuilderProvider.java,v 1.1 2007/03/23 16:26:33 oeuillot Exp $
3 */
4 package org.rcfaces.core.internal.documentBuilder;
5
6 import java.io.IOException;
7 import java.io.Reader;
8 import java.io.Writer;
9
10 import org.w3c.dom.Document;
11
12 /**
13 *
14 * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
15 * @version $Revision: 1.1 $ $Date: 2007/03/23 16:26:33 $
16 */
17 public interface IDocumentBuilderProvider {
18
19 void serialize(Writer writer, Document document) throws IOException;
20
21 Document parse(Reader reader) throws IOException;
22 }