(int rowIndex, int columnIndex)
| 994 | // } |
| 995 | |
| 996 | @Override |
| 997 | public double getValueAt(int rowIndex, int columnIndex) { |
| 998 | foundColumn = columnIndex = convertTableColumnIndex(bsColVis, columnIndex); |
| 999 | rowIndex = rowIndex * model.stride; |
| 1000 | // conversionFactor added by D Brown Dec 2010 |
| 1001 | if (columnIndex == 0) { |
| 1002 | return xpoints[rowIndex]; |
| 1003 | } |
| 1004 | return ypoints[rowIndex] + shift; |
| 1005 | } |
| 1006 | |
| 1007 | /** |
| 1008 | * Appends a data point and its uncertainty to the Dataset. |