public void processParams(final ProcessParameterContext processParameterContext) {
final Annotation[] parameterAnnotations =
getParameterAnnotations(processParameterContext.getMethod())[processParameterContext.getParamNum()];
for (final Annotation parameterAnnotation : parameterAnnotations) {
if (parameterAnnotation instanceof Named) {
final Named annotation = (Named) parameterAnnotation;
FacetUtil.addFacet(create(annotation, processParameterContext.getFacetHolder()));
return;
}
}
}