com.ibm.ulc.util
Interface ITableRow

All Known Implementing Classes:
UlcHashtable

public interface ITableRow

ITableRow tags objects which can be used as an element inside the ULCTableModel.

See Also:
com.ibm.ulc.application.ULCTableModel, com.ibm.ulc.application.GenericTableModel

Method Summary
 java.lang.Object getValueAt(java.lang.String attributeName)
          Return the object identified by the key attributeName or null if not found
 void setValueAt(java.lang.Object value, java.lang.String attributeName)
          Set the object identified by the key attributeName to the specified value.
 

Method Detail

getValueAt

public java.lang.Object getValueAt(java.lang.String attributeName)
Return the object identified by the key attributeName or null if not found
Parameters:
attributeName - java.lang.String
Returns:
java.lang.Object

setValueAt

public void setValueAt(java.lang.Object value,
                       java.lang.String attributeName)
Set the object identified by the key attributeName to the specified value.
Parameters:
attributeName - java.lang.String
value - java.lang.Object