DataSet specifies a method modify(T row) to permit specific rows be modified in
a DataSet instance.
Unfortunately, due the underlying nature of Collections, the notion of position is subsumed by the specific object reference as re-express by T row. Therefore, this method needs to be modified as follows:
modify(T row, T row2);
i.e. swap row with row2.
###@###.### 2004-09-24
On second thoughts we need not modify(T row) needs to change to modify(T row, T row2). The method modify(T row, T row2) should be added over and above the existing method as overloaded.
###@###.### 2004-09-28
a DataSet instance.
Unfortunately, due the underlying nature of Collections, the notion of position is subsumed by the specific object reference as re-express by T row. Therefore, this method needs to be modified as follows:
modify(T row, T row2);
i.e. swap row with row2.
###@###.### 2004-09-24
On second thoughts we need not modify(T row) needs to change to modify(T row, T row2). The method modify(T row, T row2) should be added over and above the existing method as overloaded.
###@###.### 2004-09-28