return nodeToTable(doc, symbols);
}
public static DocumentTable textToTable(String text, SymbolTable symbols) throws DTSMException {
if ( text != null ) {
TextTableGenerator ttg = new TextTableGenerator(text);
ttg.setSymbolTable(symbols);
return ttg.process();
}
else
throw new DTSMException("String is null");
}