}
public static void tableToWriter(DocumentTable table, PrintWriter writer, boolean omitPrefix) throws DTSMException {
if ( table != null ) {
try {
TextProducer producer = new TextProducer(table, omitPrefix);
producer.setWriter(writer);
producer.process();
}
catch ( DTSMException e ) {
throw e;
}
catch ( Exception e ) {