public static String getGetNodePropertyCode(
     Node object,
     String propertyName,
     boolean cacheIfPossible,
     ClientDocumentStfulDelegateWebImpl clientDoc) {
   return clientDoc.getNodeReference(object, cacheIfPossible, true) + "." + propertyName;
 }
 public static String getSetNodePropertyCode(
     Node node,
     String propertyName,
     String value,
     boolean cacheIfPossible,
     ClientDocumentStfulDelegateWebImpl clientDoc) {
   return clientDoc.getNodeReference(node, cacheIfPossible, true)
       + "."
       + propertyName
       + "="
       + toTransportableStringLiteral(value, clientDoc.getBrowserWeb())
       + ";\n"; // El \n es un embellecedor
 }