ewe.util
Class DataProperty

java.lang.Object
  extended byewe.util.DataProperty

public class DataProperty
extends Object

This class is not currently used.


Field Summary
 int arrayLength
          If the data is a byte array this marks the length of the data for this property in the array.
 int arrayStart
          If the data is a byte array this marks the start of the data for this property in the array.
 Object data
          This will be set to the appropriate value if it is a String or byte array.
 int highValue
          This will be set to the appropriate value if the value is an 8-byte value.
 int id
          This is the id of the property.
 int type
          This is the type of the property.
 int value
          This will be set the appropriate value if the value is an integer type or a boolean type (0 = false, non-zero = true).
 
Constructor Summary
DataProperty()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, toString
 

Field Detail

type

public int type
This is the type of the property.


id

public int id
This is the id of the property.


value

public int value
This will be set the appropriate value if the value is an integer type or a boolean type (0 = false, non-zero = true).


highValue

public int highValue
This will be set to the appropriate value if the value is an 8-byte value.


data

public Object data
This will be set to the appropriate value if it is a String or byte array.


arrayStart

public int arrayStart
If the data is a byte array this marks the start of the data for this property in the array. See arrayLength member.


arrayLength

public int arrayLength
If the data is a byte array this marks the length of the data for this property in the array. See arrayStart member.

Constructor Detail

DataProperty

public DataProperty()