535536537538539540541542543544545
labels.add(c.getName()); Collections.addAll(labels,c.getSynonyms()); // add synonyms for(String s: labels){ cls.addLabel(s); } // add definitions for(Definition d: c.getDefinitions()){ cls.addComment(d.getDefinition()); }
10221023102410251026102710281029103010311032
IClass dst = target.createClass(src.getName()); // copy superficial stuff for(String lbl: src.getLabels()) dst.addLabel(lbl); for(String com: src.getComments()) dst.addComment(com); if(src.getVersion() != null) dst.addVersion(src.getVersion());