final Map<String, AnnotationDescr> annotations = td.getAnnotations();
for ( final Map.Entry<String, AnnotationDescr> en : annotations.entrySet() ) {
final String annotationName = en.getKey();
final AnnotationDescr descr = en.getValue();
final Map<String, String> values = descr.getValues();
final AnnotationMetaModel am = new AnnotationMetaModel( annotationName,
values );
mm.getAnnotations().add( am );
}