Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
6914 dpurdie 1
package com.erggroup.buildtool.utilities;
2
 
3
/**int wrapper used for output parameters
4
 */
5
public class MutableInt
6
{
7
  /**
8
   * @attribute
9
   */
10
  public int value = 0;
11
 
12
  /**
13
   * Create a new mutable integer 
14
   * @param mValue - The initial value of the integer
15
   */
16
  public MutableInt(int mValue)
17
  {
18
	  value = mValue;
19
  }
20
}