java.lang.Object | ||
↳ | com.datalogic.extension.selfshopping.cradle.joyatouch.GenericArea | |
↳ | com.datalogic.extension.selfshopping.cradle.joyatouch.CustomArea |
Class representing the Joya Touch custom area of data, consisting in an array of bytes and its size. Each Cradle slot contains one of these areas.
Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
int | SIZE | Custom area size for the Joya Touch Cradle. |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Constructor for an area of
SIZE elements. | |||||||||||
Constructor specifying the size of the internal byte array to create.
| |||||||||||
Constructor that fills the area with the byte array given as input.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.datalogic.extension.selfshopping.cradle.joyatouch.GenericArea
| |||||||||||
From class
java.lang.Object
|
Custom area size for the Joya Touch Cradle. It is not possible to write or read more than this amount of bytes.
Constructor specifying the size of the internal byte array to create.
size | The requested byte array size. |
---|
IllegalArgumentException | in case the input size is invalid. |
---|
Constructor that fills the area with the byte array given as input.
content | The byte array that will represent the content of the new area. This array will be deep copied inside the class, any modification to the original array will not be reproduced inside the CustomArea object. |
---|
IllegalArgumentException | in case the input array is invalid. |
---|