| pnuts.lang.Indexed
All known Subclasses: org.pnuts.jdbc.ColumnMap,
Indexed | public interface Indexed (Code) | | Index-access to an instance of this interface is interpreted as the set/get
method call, which are defined in the implementation class.
indexed[idx] ==> indexed.get(idx)
indexed[idx] = value ==> indexed.set(idx, value)
|
get | public Object get(int idx)(Code) | | Read access to the index
Parameters: idx - the index |
set | public void set(int idx, Object value)(Code) | | Write access to the index
Parameters: idx - the index Parameters: value - the object to be assigned |
|
|