final Properties properties = pcwmp.metadataProperties("labelAt");
return properties != null ? new LabelAtFacetOnPropertyFromProperties(properties, holder) : null;
}
private static LabelAtFacetOnPropertyAnnotation createFromAnnotationIfPossible(final ProcessMethodContext processMethodContext) {
final LabelAt annotation = Annotations.getAnnotation(processMethodContext.getMethod(), LabelAt.class);
return (annotation != null) ? new LabelAtFacetOnPropertyAnnotation(annotation.value(), processMethodContext.getFacetHolder()) : null;
}