package org.ndogen.converter; import java.io.PrintWriter; public class SimpleWriter { protected PrintWriter writer; public SimpleWriter(PrintWriter writer) { super(); this.writer = writer; } public void print(String s) { writer.print(s); } public void println(String s) { writer.println(s); } public void println() { writer.println(); } }