1 package com.loribel.commons.abstraction;
2
3 import java.io.*;
4
5 /***
6 * Interface to write a representation of an object to Xml file.
7 *
8 * @author Grégory Borelli
9 * @version 2003/11/19 - 16:16:59 - gen 7.12
10 */
11 public interface GB_NodeWriter
12 {
13
14 /***
15 * Update the writer with the content of the data.
16 *
17 * @param a_writer Writer - the writer to update
18 * @param a_data Object - the data to add to the writer
19 */
20 void write(
21 Writer a_writer,
22 Object a_data)
23 throws IOException;
24
25 }