Ejemplo n.º 1
0
 /* service node */
 public void outAService(AService node) {
   setValue(
       node,
       node.getService().toString()
           + node.getLBrace().toString()
           + '\n'
           + getValues(node.getHtml())
           + getValues(node.getSchema())
           + getValues(node.getVariable())
           + getValues(node.getFunction())
           + getValues(node.getSession())
           + node.getRBrace().toString()
           + '\n'
           + '\n');
 }