Ontimize 5.2072EN

com.ontimize.gui.table
Interface ISetReferenceValues

All Known Implementing Classes:
ComboReferenceCellEditor, ReferenceCellEditor

public interface ISetReferenceValues

This interface must be implemented for all editors that use the 'onsetvalueset' parameter, at least if they want to send the update data to the database in the insert and update operations


Method Summary
 java.util.List getSetColumns()
          Gets the list of columns to update in the table
 java.util.Hashtable getSetData(boolean useNullValues)
          Returns an object with the values configured in the 'onsetvalueset' parameter.
 

Method Detail

getSetData

public java.util.Hashtable getSetData(boolean useNullValues)
Returns an object with the values configured in the 'onsetvalueset' parameter. This method will be call when table execute an update or insert operations against the database.

Parameters:
useNullValues - If this parameter is true then the method must return a NullValue object if the column to set is null. If this parameter is false then the column that is null is not included in the result
Returns:

getSetColumns

public java.util.List getSetColumns()
Gets the list of columns to update in the table

Returns:

Ontimize