Subversion Repositories DevTools

Rev

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

Rev 4280 Rev 4285
Line 3... Line 3...
3
import java.util.Iterator;
3
import java.util.Iterator;
4
 
4
 
5
import org.apache.log4j.Logger;
5
import org.apache.log4j.Logger;
6
 
6
 
7
/**entity class representing how derived files are produced on a platform
7
/**entity class representing how derived files are produced on a platform
8
 * recognises that a package may have different build standards on different platforms
8
 * Recognizes that a package may have different build standards on different platforms
9
 * for example, jats may be used to build production code on a win32 build machine and debug code on a solaris build machine
9
 * for example, Jats may be used to build production code on a win32 build machine and debug code on a solaris build machine
10
 * potentially supports mixing build standards
10
 * potentially supports mixing build standards
11
 * for example, jats may be used to build code on one build machine, and erg ant on another
11
 * for example, Jats may be used to build code on one build machine, and ERG ant on another
12
 * this is not supported in the release manager 
12
 * this is not supported in the release manager 
13
 */
13
 */
14
public class BuildStandard
14
public class BuildStandard
15
{
15
{
16
  /**Logger
16
  /**Logger
Line 82... Line 82...
82
   * is realized by using java 1.7 to launch ant 
82
   * is realized by using java 1.7 to launch ant 
83
   * @attribute
83
   * @attribute
84
   */
84
   */
85
  private boolean mJava1_7 = false;
85
  private boolean mJava1_7 = false;
86
 
86
 
-
 
87
  /**When true JATS is not used to build this package
-
 
88
   * 
-
 
89
   */
87
  private boolean mJatsNone = false;
90
  private boolean mJatsNone = false;
88
  
91
  
-
 
92
  /**When True ANT is not used to build this package
-
 
93
   * 
-
 
94
   */
89
  private boolean mAntNone = false;
95
  private boolean mAntNone = false;
90
  
96
  
-
 
97
  /**When true the package can be built using one of the known standards
-
 
98
   * 
-
 
99
   */
91
  private boolean mSupported = true;
100
  private boolean mSupported = true;
92
 
101
 
93
  /**constructor
102
  /**constructor
94
   */
103
   */
95
  BuildStandard(RippleEngine rippleEngine)
104
  BuildStandard(RippleEngine rippleEngine)