public interface IUpdatableDataSetRow extends IDataSetRow
Modifier and Type | Method and Description |
---|---|
void |
setColumnValue(int index,
java.lang.Object value)
Sets the column data by index.
|
void |
setColumnValue(java.lang.String name,
java.lang.Object value)
Sets the column data by column name.
|
getColumnValue, getColumnValue, getDataSet
void setColumnValue(int index, java.lang.Object value) throws ScriptException
index
- 1-based index of column. Value must be between 1 and the
number of columnsvalue
- New value for column (can be null)ScriptException
- if index is out of range, or if value cannot be
converted to the data type of the columnvoid setColumnValue(java.lang.String name, java.lang.Object value) throws ScriptException
name
- name of columnScriptException
- Named column does not exist, or if value cannot be
converted to the data type of the columnCopyright © 2008 Actuate Corp. All rights reserved.