232233234235236237238239240241242
attribute.setName(newName); Embeddable embeddable = attribute.getEmbeddable(); if (embeddable != null) { embeddable.removeAttribute(oldName); embeddable.addAttribute(attribute); } } /** Changes the name of the attribute in all places in DataMap. */
207208209210211212213214215216217