RowProcessingAnalyzerJobBuilder<? extends RowProcessingAnalyzer<?>> analyzerJobBuilder);
protected List<AnalyzerBeanDescriptor<?>> getDescriptors() {
Collection<AnalyzerBeanDescriptor<?>> descriptors = _configuration.getDescriptorProvider()
.getAnalyzerBeanDescriptors();
List<AnalyzerBeanDescriptor<?>> result = CollectionUtils2.sorted(descriptors, new DisplayNameComparator());
for (Iterator<AnalyzerBeanDescriptor<?>> it = result.iterator(); it.hasNext();) {
AnalyzerBeanDescriptor<?> descriptor = it.next();
if (!descriptor.isRowProcessingAnalyzer() || descriptor.getAnnotation(OutputWriterAnalyzer.class) == null) {
it.remove();