params.put( "node", new ParameterHolder(null) );
}
// TF:23/9/07:We need to return the X and Y coordinates with respect to the cell, not the table. Also, we need
// to change the child to the renderer or editor for that cell.
Point loc = new Point(X, Y);
int row = table.rowAtPoint(loc);
int column = table.columnAtPoint(loc);
// TF:27/9/07:Made the row and column 1-based indexes instead of 0-based
params.put( "row", new ParameterHolder(row+1) );
params.put( "column", new ParameterHolder(column+1) );