}
private void triggerAtPoint(Point point, int button) {
// find the cell that got clicked
JTable table = fixedSizeTable.getTable();
int row = table.rowAtPoint(point);
int column = table.columnAtPoint(point);
if (row > -1 && column > -1) {
// build up a matrix value object we then trigger
MatrixValue matrixValue = new MatrixValue();
matrixValue.row = row;