Subversion Repositories DevTools

Rev

Rev 7033 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
6914 dpurdie 1
package com.erggroup.buildtool.ripple;
2
 
3
/**	This class is used to contain a generated build file together 
4
 * with some meta data about the build file
5
 */
6
public class BuildFile {
7
 
8
	/**
9
	 * Indicate the state of the buildfile
10
	 */
11
 
12
    public enum BuildFileState {
13
        Empty,						// No content. Used to indicate end of a vector of BuildFiles
14
        Dummy,						// No active build
15
        Generic,					// Generic build - done on any machine
16
        NonGeneric;					// Non Generic build - done on all
17
    }
18
 
19
    /** Describes the build file content
20
     */
21
    public BuildFileState state = BuildFileState.Empty;
22
 
23
	/**	The body of the build file
24
	 */
25
	public String	content;
26
 
27
	/** Daemon Mode only 
28
	 *  pkg_id of the package being built
29
	 */
30
	public int mPkgId = 0;
31
 
7033 dpurdie 32
	/** Daemon Mode Only
6914 dpurdie 33
	 * pv_id of the package being built
34
	 */
35
	public int mPvId = 0;
36
 
37
}