| util.MultipleMatchModel
MultipleMatchModel | public interface MultipleMatchModel (Code) | | |
Method Summary | |
public Object | getObject() this was put to return the collection since we dont know what
kinda object we have in here. | public String | getValueAt(int row, int group) this will return value at the given offset, if this is
applicable, else return null. | public void | setValueAt(String str, int row, int group) |
getObject | public Object getObject()(Code) | | this was put to return the collection since we dont know what
kinda object we have in here. You can get and then manipulate
as is. This could also have been a getObject.
|
getValueAt | public String getValueAt(int row, int group)(Code) | | this will return value at the given offset, if this is
applicable, else return null. e.g. for a hashtable this would
mean nothing.
|
setValueAt | public void setValueAt(String str, int row, int group)(Code) | | |
|
|