if (copy == null) { // ist noch nicht kopiert
MetaBean meta = all.get(xmlMeta.getId());
if (meta == null) { // gibt es nicht
copy = createMetaBean(xmlMeta);
} else { // gibt es, jetzt kopieren
copy = meta.copy();
}
copies.put(xmlMeta.getId(), copy);
}
carrier.xmlMeta = xmlMeta;
xmlFactory.enrichMetaBean(copy, carrier);