Subversion Repositories DevTools

Rev

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

Rev 7077 Rev 7079
Line 20... Line 20...
20
  private static final Logger mLogger = LoggerFactory.getLogger(BuildExclusion.class);
20
  private static final Logger mLogger = LoggerFactory.getLogger(BuildExclusion.class);
21
 
21
 
22
  /**The pvid of the package being excluded
22
  /**The pvid of the package being excluded
23
   * @attribute
23
   * @attribute
24
   */
24
   */
25
  private int mId;
25
  public int mId;
26
 
26
 
27
  /**root identifier is the PVID of the package that is causing the exclusion
27
  /**root identifier is the PVID of the package that is causing the exclusion
28
   * A NULL value indicates that this entry(package) is the root cause of the of an exclusion
28
   * A NULL value indicates that this entry(package) is the root cause of the of an exclusion
29
   * @attribute
29
   * @attribute
30
   */
30
   */
31
  private int mRootId;
31
  public int mRootId;
32
 
32
 
33
  /**root cause
33
  /**root cause
34
   * If not NULL, then this is the reason this package is being excluded
34
   * If not NULL, then this is the reason this package is being excluded
35
   * @attribute
35
   * @attribute
36
   */
36
   */
37
  private String mRootCause;
37
  public String mRootCause;
38
 
38
 
39
  /**test build instruction
39
  /**test build instruction
40
   * @attribute
40
   * @attribute
41
   */
41
   */
42
  private int mTestBuildInstruction;
42
  private int mTestBuildInstruction;