Package com.iizix.prop.vs
Class VSCellData
- java.lang.Object
- com.iizix.prop.vs.VSCellData
public class VSCellData extends java.lang.ObjectVirtualSpace cell data used when setting an entire column in a table.- Author:
- Christopher Mindus
Field Summary
Fields Modifier and Type Field Description java.lang.ObjectdataData source object, for any purpose.booleanisEnabledThe enabled flag, initialized by default totrue.booleanisReadOnlyRead-only flag, initialized by default tofalse.booleanisVisibleThe visibility flag, initialized by default totrue.ValuevalueThe 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 booleanequals(VSCellData[] cells1, VSCellData[] cells2)Returns if two arrays of VirtualSpace cell data are equal.booleanequals(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
datamember.- Overrides:
equalsin 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.