Subversion Repositories DevTools

Rev

Rev 6914 | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.erggroup.buildtool.utilities;

/**int wrapper used for output parameters
 */
public class MutableInt
{
  /**
   * @attribute
   */
  public int value = 0;
  
  /**
   * Create a new mutable integer 
   * @param mValue - The initial value of the integer
   */
  public MutableInt(int mValue)
  {
          value = mValue;
  }
}