Package org.eobjects.datacleaner.util

Examples of org.eobjects.datacleaner.util.DisplayNameComparator


      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();
View Full Code Here


  private static final Logger logger = LoggerFactory.getLogger(DescriptorPopupMenu.class);
  private final List<? extends E> _descriptors;

  public DescriptorPopupMenu(Collection<? extends E> descriptors) {
    _descriptors = CollectionUtils2.sorted(descriptors, new DisplayNameComparator());

    initialize();
  }
View Full Code Here

TOP

Related Classes of org.eobjects.datacleaner.util.DisplayNameComparator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.