01: package util;
02:
03: public interface MultipleMatchModel {
04:
05: public void setValueAt(String str, int row, int group);
06:
07: /** this will return value at the given offset, if this is
08: * applicable, else return null. e.g. for a hashtable this would
09: * mean nothing.
10: */
11: public String getValueAt(int row, int group);
12:
13: /** this was put to return the collection since we dont know what
14: * kinda object we have in here. You can get and then manipulate
15: * as is. This could also have been a getObject.
16: */
17: public Object getObject();
18: }
|