Class TableValidationObject

  • All Implemented Interfaces:
    java.io.Serializable

    public class TableValidationObject
    extends ValidationObject
    TableValidationObject extends ValidationObject to provide row and column information of the value to be validated.
    See Also:
    Serialized Form
    • Field Summary

      • Fields inherited from class java.util.EventObject

        source
    • Constructor Summary

      Constructors 
      Constructor Description
      TableValidationObject​(java.lang.Object source, java.lang.Object oldValue, java.lang.Object newValue)  
      TableValidationObject​(java.lang.Object source, java.lang.Object oldValue, java.lang.Object newValue, int row, int column)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int getColumn()
      Gets the column.
      int getRow()
      Gets the row.
      void setColumn​(int column)
      Sets the column.
      void setRow​(int row)
      Sets the row.
      java.lang.String toString()  
      • Methods inherited from class java.util.EventObject

        getSource
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • TableValidationObject

        public TableValidationObject​(java.lang.Object source,
                                     java.lang.Object oldValue,
                                     java.lang.Object newValue)
      • TableValidationObject

        public TableValidationObject​(java.lang.Object source,
                                     java.lang.Object oldValue,
                                     java.lang.Object newValue,
                                     int row,
                                     int column)
    • Method Detail

      • getRow

        public int getRow()
        Gets the row.
        Returns:
        the row.
      • setRow

        public void setRow​(int row)
        Sets the row.
        Parameters:
        row - the row.
      • getColumn

        public int getColumn()
        Gets the column.
        Returns:
        the column.
      • setColumn

        public void setColumn​(int column)
        Sets the column.
        Parameters:
        column - the column.