Exemplo n.º 1
0
 /** Expand a single entity. */
 public void expandEntity(ActiveEntity n, Output dst) {
   NodeList value = n.getValueNodes(this);
   if (value == null) {
     dst.putNode(n);
   } else {
     Copy.copyNodes(value, dst);
   }
 }