System.out.println(element.printTree(null));
}
NLGElement postSyntax = this.syntax.realise(element);
if (this.debug) {
System.out.println("\nPOST-SYNTAX TREE\n"); //$NON-NLS-1$
System.out.println(postSyntax.printTree(null));
}
NLGElement postMorphology = this.morphology.realise(postSyntax);
if (this.debug) {
System.out.println("\nPOST-MORPHOLOGY TREE\n"); //$NON-NLS-1$
System.out.println(postMorphology.printTree(null));