JIDE 3.5.15

com.jidesoft.validation
Class TableValidationObject

java.lang.Object
  extended by java.util.EventObject
      extended by com.jidesoft.validation.ValidationObject
          extended by com.jidesoft.validation.TableValidationObject
All Implemented Interfaces:
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
TableValidationObject(Object source, Object oldValue, Object newValue)
           
TableValidationObject(Object source, Object oldValue, Object newValue, int row, int column)
           
 
Method Summary
 int getColumn()
          Gets the column.
 int getRow()
          Gets the row.
 void setColumn(int column)
          Sets the column.
 void setRow(int row)
          Sets the row.
 String toString()
           
 
Methods inherited from class com.jidesoft.validation.ValidationObject
getNewValue, getOldValue
 
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(Object source,
                             Object oldValue,
                             Object newValue)

TableValidationObject

public TableValidationObject(Object source,
                             Object oldValue,
                             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.

toString

public String toString()
Overrides:
toString in class ValidationObject

JIDE 3.5.15