Subversion Repositories DevTools

Rev

Rev 864 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 864 Rev 866
Line 81... Line 81...
81
  /**when true will trigger unit tests as part of the package build phase in daemon mode
81
  /**when true will trigger unit tests as part of the package build phase in daemon mode
82
   * @attribute
82
   * @attribute
83
   */
83
   */
84
  boolean mHasAutomatedUnitTests = false;
84
  boolean mHasAutomatedUnitTests = false;
85
 
85
 
86
  /**when true, do not include in a build in daemon mode
-
 
87
   * @attribute
-
 
88
   */
-
 
89
  boolean mDoNotRipple = false;
-
 
90
 
-
 
91
  /**when true, do not ripple this package through packages which are dependent upon it in daemon mode
86
  /**when true, do not ripple this package through packages which are dependent upon it in daemon mode
92
   * @attribute
87
   * @attribute
93
   */
88
   */
94
  boolean mAdvisoryRipple = false;
89
  boolean mAdvisoryRipple = false;
95
 
90
 
Line 552... Line 547...
552
    }
547
    }
553
    
548
    
554
    return retVal;
549
    return retVal;
555
  }
550
  }
556
 
551
 
-
 
552
  /**returns email information
-
 
553
   */
-
 
554
  String emailInfoNonAntTask()
-
 
555
  {
-
 
556
    String retVal = null;
-
 
557
    
-
 
558
    for (Iterator<String> it = mBuildFailureEmailCollection.iterator(); it.hasNext(); )
-
 
559
    {
-
 
560
      String email = it.next();
-
 
561
      
-
 
562
      if ( retVal == null )
-
 
563
      {
-
 
564
        retVal = new String();
-
 
565
      }
-
 
566
      else
-
 
567
      {
-
 
568
        retVal += ",";
-
 
569
      }
-
 
570
      retVal += email;
-
 
571
    }
-
 
572
    
-
 
573
    return retVal;
-
 
574
  }
-
 
575
 
557
  /**adds email to mBuildFailureEmailCollection if unique
576
  /**adds email to mBuildFailureEmailCollection if unique
558
   */
577
   */
559
  void addEmail( String email )
578
  void addEmail( String email )
560
  {
579
  {
561
    boolean alreadyExists = false;
580
    boolean alreadyExists = false;