Package com.iizix.prop.vs
Class VSCellData
- java.lang.Object
- com.iizix.prop.vs.VSCellData
public class VSCellData extends java.lang.Object
VirtualSpace cell data used when setting an entire column in a table.- Author:
- Christopher Mindus
Field Summary
Fields Modifier and Type Field Description java.lang.Object
data
Data source object, for any purpose.boolean
isEnabled
The enabled flag, initialized by default totrue
.boolean
isReadOnly
Read-only flag, initialized by default tofalse
.boolean
isVisible
The visibility flag, initialized by default totrue
.Value
value
The value, initialized by default tonull
.
Constructor Summary
Constructors Constructor Description VSCellData()
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static boolean
equals(VSCellData[] cells1, VSCellData[] cells2)
Returns if two arrays of VirtualSpace cell data are equal.boolean
equals(java.lang.Object o)
Checks for two equal VSCellData's.
Field Detail
isVisible
public boolean isVisible
The visibility flag, initialized by default totrue
.
isEnabled
public boolean isEnabled
The enabled flag, initialized by default totrue
.
isReadOnly
public boolean isReadOnly
Read-only flag, initialized by default tofalse
.
value
public Value value
The value, initialized by default tonull
.
data
public java.lang.Object data
Data source object, for any purpose.
Method Detail
equals
public boolean equals(java.lang.Object o)
Checks for two equal VSCellData's.Comparison is done without verification of the
data
member.- Overrides:
equals
in classjava.lang.Object
- Returns:
- The equality flag.
equals
public static boolean equals(VSCellData[] cells1, VSCellData[] cells2)
Returns if two arrays of VirtualSpace cell data are equal.