}
private void addMixinClasses(String fieldName, ClassTransformation transformation,
MutableEmbeddedComponentModel model)
{
MixinClasses annotation = transformation.getFieldAnnotation(fieldName, MixinClasses.class);
if (annotation == null) return;
for (Class c : annotation.value())
model.addMixin(c.getName());
}