Subversion Repositories DevTools

Rev

Rev 7048 | Rev 7050 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7048 Rev 7049
Line 505... Line 505...
505
        mAlias = "null";
505
        mAlias = "null";
506
        mVcsTag = "null";
506
        mVcsTag = "null";
507
    }
507
    }
508
 
508
 
509
    /**
509
    /**
510
     * constructor for unit test purposes
510
     * Constructor for unit test purposes
-
 
511
     *  Will invoke applyPv and save the results for the UTF framework
511
     */
512
     */
512
    public Package(ReleaseManager rm, String version, int majorLimit, int minorLimit, int patchLimit, int buildNumberLimit)
513
    public Package(ReleaseManager rm, String version, int majorLimit, int minorLimit, int patchLimit, int buildNumberLimit)
513
    {
514
    {
514
        mId = -1;
515
        mId = -1;
515
        mRippleField.setLimit();
516
        mRippleField.setLimit();
Line 551... Line 552...
551
    public String getVersion()
552
    public String getVersion()
552
    {
553
    {
553
        return mVersion;
554
        return mVersion;
554
    }
555
    }
555
    
556
    
-
 
557
    /**
-
 
558
     * accessor for unit test purposes
-
 
559
     */
-
 
560
    public String getNextVersion()
-
 
561
    {
-
 
562
        return mNextVersion;
-
 
563
    }
-
 
564
    
556
 
565
 
557
    /**
566
    /**
558
     * returns true if mBuildStandardCollection is not empty
567
     * returns true if mBuildStandardCollection is not empty
559
     */
568
     */
560
    boolean isReproducible()
569
    boolean isReproducible()
Line 751... Line 760...
751
     *         1 : cannot work with non standard versioning
760
     *         1 : cannot work with non standard versioning
752
     *         2 : ripple field limitations prevent a ripple build
761
     *         2 : ripple field limitations prevent a ripple build
753
     *         3 : Invalid Change Type
762
     *         3 : Invalid Change Type
754
     * @exception Exception
763
     * @exception Exception
755
     */
764
     */
-
 
765
//TODO - Remove the rtag_id parameter. Its not needed, although its badly used.    
756
    int applyPV(ReleaseManager releaseManager, int rtag_id) throws Exception
766
    int applyPV(ReleaseManager releaseManager, int rtag_id) throws Exception
757
    {
767
    {
758
        String logInfo = "applyPV," + mName;
768
        String logInfo = "applyPV," + mName;
759
        mLogger.debug("applyPV on Package " + mName);
769
        mLogger.debug("applyPV on Package " + mName);
760
        
770