Package net.sourceforge.cruisecontrol.monitoring

Examples of net.sourceforge.cruisecontrol.monitoring.ProjectModification


      else {
        String lastUser = null;
       
        Iterator modificationsIter = lastBuildChanges.iterator();
        while ( modificationsIter.hasNext() ) {
          ProjectModification modification = (ProjectModification) modificationsIter.next();
          String currentUser = modification.getUser();
          if ( lastUser == null || !lastUser.equals( currentUser )) {
            lastUser = currentUser;
            sb.append( currentUser );
            sb.append( "\r\n\t" );
          }
         
          sb.append( modification.getComment() );
          sb.append( "\r\n" );
        }
      }
     
      OutputStatusPanel panel = new OutputStatusPanel();
View Full Code Here

TOP

Related Classes of net.sourceforge.cruisecontrol.monitoring.ProjectModification

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.