for(String lbl: src.getLabels())
dst.addLabel(lbl);
for(String com: src.getComments())
dst.addComment(com);
if(src.getVersion() != null)
dst.addVersion(src.getVersion());
// copy properties
for(IProperty sp : src.getProperties()){
// skip PartOf, and has_PART
if(HAS_PART.equals(sp.getName()) || PART_OF.equals(sp.getName()))