}
}
public static DocumentTable nodeToTable(Node node, SymbolTable symbols) throws DTSMException {
if ( node != null ) {
DOMTableGenerator dtm = new DOMTableGenerator(node);
dtm.setSymbolTable(symbols);
return dtm.process();
}
else
throw new DTSMException("Node is null");
}