applicationLogic.utility
Class ByteArrayWrapper

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

public class ByteArrayWrapper
extends java.lang.Object

Wrapper for byte[].

Author:
02leungi

Constructor Summary
ByteArrayWrapper(byte[] byteArr)
          Initialize byte array.
 
Method Summary
 byte[] getByteArr()
          Get byte array.
 void setByteArr(byte[] byteArr)
          Set byte array.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ByteArrayWrapper

public ByteArrayWrapper(byte[] byteArr)
Initialize byte array.

Parameters:
byteArr - byte array to be wrapped in this object.
Method Detail

setByteArr

public void setByteArr(byte[] byteArr)
Set byte array.

Parameters:
byteArray - byte array to be wrapped in this object.

getByteArr

public byte[] getByteArr()
Get byte array.

Returns:
The wrapped byte array.