final Properties properties = processMethodContext.metadataProperties("paged");
return properties != null ? new PagedFacetProperties(properties, processMethodContext.getFacetHolder()) : null;
}
private PagedFacet createFromPagedAnnotationIfPossible(final ProcessMethodContext processMethodContext) {
final Paged annotation = Annotations.getAnnotation(processMethodContext.getMethod(), Paged.class);
return annotation != null ? new PagedFacetAnnotation(processMethodContext.getFacetHolder(), annotation.value()) : null;
}