Package net.sourceforge.cruisecontrol.gui.panels.monitoring.sorting

Examples of net.sourceforge.cruisecontrol.gui.panels.monitoring.sorting.DateStringComparator


            statusComparators.add( new StatusComparator() );
      }
      else if ( ProjectMonitorAttribute.LAST_BUILD_START_TIME.equals( currentHeader ) ) {
        List comparators = chooser.getComparatorsForColumn( index );
        comparators.clear();
        comparators.add( new DateStringComparator( DateStringComparator.LAST_BUILD_START ) );       
      }
      else if ( ProjectMonitorAttribute.LAST_BUILD_TIME.equals( currentHeader ) ) {
        List comparators = chooser.getComparatorsForColumn( index );
        comparators.clear();
        comparators.add( new DateStringComparator( DateStringComparator.LAST_BUILD ) );       
      }
      else if ( ProjectMonitorAttribute.LAST_SUCCESS_BUILD_TIME.equals( currentHeader ) ) {
        List comparators = chooser.getComparatorsForColumn( index );
        comparators.clear();
        comparators.add( new DateStringComparator( DateStringComparator.LAST_SUCCESS_BUILD ) );       
      }
    }
  }
View Full Code Here

TOP

Related Classes of net.sourceforge.cruisecontrol.gui.panels.monitoring.sorting.DateStringComparator

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.