package util;
public interface MultipleMatchModel {
public void setValueAt (String str, int row, int group);
/** this will return value at the given offset, if this is
* applicable, else return null. e.g. for a hashtable this would
* mean nothing.
*/
public String getValueAt (int row, int group);
/** 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.
*/
public Object getObject ();
}
|