I have a custom renderer in a JTable to display Jcheckboxes for booleans. However, this causes a slight issue because when the user clicks in the table cell, but not in the checkbox, the checkbox is still checked.
Is there a way I can return the bounds of the actual JCheckbox that is rendered by the JTable at a particular point so I can determine if the click is within the bounds of the JCheckbox?
Thank you very much.