public String getSource( CompilationUnit sourceTree )
{
// render the AST into source
StringWriter buf = new StringWriter();
sourceTree.acceptVisitor( new InsertParenthesesVisitor(), null );
sourceTree.acceptVisitor( new JavaOutputVisitor( new PlainTextOutput( buf ), m_settings ), null );
return buf.toString();
}