Class 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 TypeFieldDescription
      java.lang.Objectdata
      Data source object, for any purpose.
      booleanisEnabled
      The enabled flag, initialized by default to true.
      booleanisReadOnly
      Read-only flag, initialized by default to false.
      booleanisVisible
      The visibility flag, initialized by default to true.
      Valuevalue
      The value, initialized by default to null.
    • Constructor Summary

      Constructors 
      ConstructorDescription
      VSCellData() 
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and TypeMethodDescription
      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.
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • isVisible

        public boolean isVisible
        The visibility flag, initialized by default to true.
      • isEnabled

        public boolean isEnabled
        The enabled flag, initialized by default to true.
      • isReadOnly

        public boolean isReadOnly
        Read-only flag, initialized by default to false.
      • value

        public Value value
        The value, initialized by default to null.
      • data

        public java.lang.Object data
        Data source object, for any purpose.
    • Constructor Detail

      • VSCellData

        public VSCellData()
    • 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 class java.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.