applicationLogic.utility
Class IntArrayWrapper

java.lang.Object
  extended by applicationLogic.utility.IntArrayWrapper

public class IntArrayWrapper
extends java.lang.Object

Wrapper for int[].

Author:
02leungi

Constructor Summary
IntArrayWrapper(int[] intArr)
          Initialize int array.
 
Method Summary
 int[] getIntArr()
          Get int array.
 void setIntArr(int[] intArr)
          Set int array.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

IntArrayWrapper

public IntArrayWrapper(int[] intArr)
Initialize int array.

Parameters:
intArr - int array to be wrapped in this object.
Method Detail

setIntArr

public void setIntArr(int[] intArr)
Set int array.

Parameters:
intArr - int array to be wrapped in this object.

getIntArr

public int[] getIntArr()
Get int array.

Returns:
The wrapped int array.