Subversion Repositories DevTools

Rev

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

Rev 7133 Rev 7201
Line 5... Line 5...
5
 
5
 
6
/** Class to contain package build information
6
/** Class to contain package build information
7
 *  Information not stored in the package as its dynamic
7
 *  Information not stored in the package as its dynamic
8
 */
8
 */
9
class PlannedPackage {
9
class PlannedPackage {
-
 
10
    /**
-
 
11
     * The build level assigned to the package in the collection
-
 
12
     */
10
    int mBuildLevel = 0;
13
    int mBuildLevel = 0;
-
 
14
    
-
 
15
    /**
-
 
16
     * The package
-
 
17
     */
11
    Package mPkg = null;
18
    Package mPkg = null;
12
    
19
    
-
 
20
    /**
-
 
21
     * A flag used in the calculation of build order
-
 
22
     */
-
 
23
    boolean mProcessed = false;
-
 
24
    
13
    public PlannedPackage (Package pkg)
25
    public PlannedPackage (Package pkg)
14
    {
26
    {
15
        this.mPkg = pkg;
27
        this.mPkg = pkg;
16
    }
28
    }
17
    
29