final Properties properties = pcwmp.metadataProperties("cssClassFa");
return properties != null ? new CssClassFaFacetOnMemberFromProperties(properties, holder) : null;
}
private CssClassFaFacet createFromAnnotationIfPossible(final ProcessMethodContext processMethodContext) {
final CssClassFa annotation = Annotations.getAnnotation(processMethodContext.getMethod(), CssClassFa.class);
return annotation != null ? new CssClassFaFacetOnMemberAnnotation(annotation.value(), processMethodContext.getFacetHolder()) : null;
}